/* ==============================
   SCAM CARD – BASE
================================ */
.scam-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

/* ==============================
   ROW – CHUNG
================================ */
.scam-card .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* ==============================
   ROW 1
================================ */
.scam-card .row-1 .left {
  font-size: 14px;
  color: #333;
}

.scam-card .row-1 .date {
  margin-top: 4px;
  color: #666;
  font-size: 13px;
}

.scam-card .money {
  font-weight: bold;
  color: #c0392b;
  font-size: 15px;
  white-space: nowrap;
}

/* ==============================
   ROW 2 (DETAILS)
================================ */
.scam-card .row-2 {
  margin-top: 8px;
  display: block; /* quan trọng cho <details> */
}

/* ==============================
   <details> & <summary>
================================ */
.scam-card details {
  position: relative;
}

.scam-card summary {
  list-style: none;              /* bỏ mũi tên mặc định */
  font-size: 13px;
  color: #007bff;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
}

/* Chrome / Safari */
.scam-card summary::-webkit-details-marker {
  display: none;
}

.scam-card summary:hover {
  text-decoration: underline;
}

/* ==============================
   DETAIL CONTENT
================================ */
.scam-card .detail {
  margin-top: 10px;
  display: none;                 /* mặc định ẩn */
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* Khi details mở */
.scam-card details[open] .detail {
  display: block;
}

/* ==============================
   LINK
================================ */
.scam-card .detail a {
  color: #007bff;
  word-break: break-all;
}

/* ==============================
   IMAGES
================================ */
.scam-card .images {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.scam-card .images img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
}
/* cuối file cũng được */
.img-full-view img {
  display: block;
}
