/* ============================================
 * css/stats.css — Stats Dashboard Page
 * ใช้ร่วมกับ Bootstrap 5 (ห้ามแตะ .row / .col-*)
 * ============================================ */


/* ------------------------------------------------
 * พื้นที่หน้าสถิติหลัก (Padding ส่วนบน/ล่างของหน้า)
 * ------------------------------------------------ */
.stats-page {
  padding-top: 24px;
  padding-bottom: 40px;
}


/* ================================
 * กล่องหัวข้อหลักของหน้า Stats
 * ================================ */
.stats-header-box {
  background: #0b1124; /* น้ำเงินดำโทน Dashboard */
  padding: 20px 24px;
  border-radius: 16px;
  margin-top: 30px; /* ★ เพิ่มระยะด้านบนตามที่พ่อสั่ง */

  /* Shadow 3 ชั้นแบบ UI Pro */
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.75),            /* outer deep shadow */
    0 0 0 1px rgba(46, 60, 90, 0.35),           /* blue border highlight */
    inset 0 0 18px rgba(255, 255, 255, 0.03);   /* inner glow */

  border-left: 4px solid #3a86ff; /* ไฟเรืองด้านซ้ายให้ดูโปร */
}

/* ================================
 * Heading
 * ================================ */
.stats-heading {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0; /* ปรับระยะให้เข้ากับ box */
}

/* ================================
 * Subtitle
 * ================================ */
.stats-subtitle {
  font-size: 16px;
  color: #9ca3af;
  margin: 0;
}


/* ------------------------------------------------
 * แถวที่ 1 — การ์ดสรุป 4 ใบใหญ่
 * (อย่าแก้ — พ่อสั่งว่าแถวนี้สมบูรณ์แล้ว)
 * ------------------------------------------------ */
.stats-card {
  background: #0b1020;
  border-radius: 16px;
  padding: 18px 18px;
  color: #ffffff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(148, 163, 184, 0.12);
  position: relative;
  overflow: hidden;
}

/* ขีดไฟเรืองด้านบนของการ์ดใหญ่ */
.stats-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
}

/* สีไฮไลต์ของแต่ละการ์ด */
.stats-card-total::before {
  background: linear-gradient(90deg, #4cc9f0, #3a86ff);
}
.stats-card-human::before {
  background: linear-gradient(90deg, #4cc9f0, #72efdd);
}
.stats-card-bot::before {
  background: linear-gradient(90deg, #3a86ff, #4361ee);
}
.stats-card-phishing::before {
  background: linear-gradient(90deg, #ef476f, #f72585);
}

/* ฟอนต์ในแถวที่ 1 */
.stats-card-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 4px;
}
.stats-card-value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.stats-card-desc {
  font-size: 15px;
  opacity: 0.8;
}


/* ==========================================================
 * แถวที่ 2 — Mini Cards (Facebook / Google / Bing / Other)
 * ปรับสี + มิติ ตามภาพที่พ่อให้ (โทนน้ำเงิน-ดำเรืองขอบ)
 * ========================================================== */
.stats-mini-card {
  background: #0f1527;      /* พื้นหลังของ Mini Card (เข้มน้ำเงินแบบภาพ) */
  border-radius: 15px;       /* มุมโค้งตามภาพ */
  padding: 16px 12px;        /* Padding สวยพอดี */

  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;            /* สีข้อความเทานุ่ม */

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.08);  /* ขอบจางแบบ Dashboard Pro */

  /* เงาแบบนุ่มลึก + inner glow ตามภาพจริง */
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.6),
    inset 0 0 22px rgba(255, 255, 255, 0.03);

  /* เอฟเฟกต์ hover */
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

/* Hover — ดึงการ์ดขึ้นแบบเบา ๆ */
.stats-mini-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.75),
    inset 0 0 26px rgba(255, 255, 255, 0.04);
}

/* Border ตามเฉดสีของแต่ละการ์ด (ต้องใส่ class เพิ่มใน HTML)
   เช่น <div class="stats-mini-card facebook"> */
.stats-mini-card.facebook { border-color: #4cc9f0; }  /* Facebook Bot */
.stats-mini-card.google   { border-color: #3a86ff; }  /* Google Bot */
.stats-mini-card.bing     { border-color: #8093f1; }  /* Bing Bot */
.stats-mini-card.other    { border-color: #ef476f; }  /* Other Bot */


/* ==========================================================
 * แถวที่ 3 — Panel ของกราฟ (Donut / Bar / Line)
 * ปรับสี + มิติแบบภาพพ่อ: เข้ม, ลึก, มี inner glow
 * ========================================================== */
.stats-panel {
  background: #0a1120;  /* พื้นหลังเข้มโทนน้ำเงิน */
  border-radius: 16px;

  padding: 18px 16px;
  color: #ffffff;

  /* Shadow + ขอบเรืองน้ำเงิน + inner glow */
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(46, 60, 90, 0.35),
    inset 0 0 24px rgba(255, 255, 255, 0.02);
}

/* ชื่อหัวข้อกราฟ */
.stats-panel-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* body ของกราฟ (canvas wrapper) */
.stats-panel-body {
  position: relative;
  padding-top: 10px;
}

/* ขนาดของกราฟ (Auto responsive) */
.stats-panel-body canvas {
  width: 100%;
  height: 260px;
  display: block;
}

/* กล่อง Legend ทั้งหมดใต้กราฟ Donut */
.stats-chart-legend {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* รายการแต่ละช่องใน Legend */
.legend-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  gap: 6px;
  opacity: 0.9;
}

/* วงกลมสีใน Legend */
.legend-color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

/* สีตามกราฟจริง */
.legend-human {
  background-color: #5ED8F5;  /* Cyan */
}

.legend-bot {
  background-color: #3a86ff;  /* Blue */
}

.legend-phishing {
  background-color: #F15C75; /* Coral Red */
}

/* ------------------------------------------------
 * แถวที่ 4 — ตารางแสดงผลล่างสุด (ห้ามแตะ)
 * ------------------------------------------------ */
.stats-table-wrapper table {
  font-size: 14px;
}

.stats-table-wrapper thead th {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  background-color: #02081a;
  border-bottom-color: #020617;
}

.stats-table-wrapper tbody tr:nth-child(odd) td {
  background-color: #0b1220;
}
.stats-table-wrapper tbody tr:nth-child(even) td {
  background-color: #060b1a;
}
.stats-table-wrapper tbody tr:hover td {
  background-color: #111827;
}

/* Badge — สีต่าง ๆ */
.stats-badge-bot {
  background-color: rgba(56, 189, 248, 0.18);
  color: #bae6fd;
}

.stats-badge-critical {
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  color: #fee2e2;
}

.stats-badge-allow {
  background-color: rgba(16, 185, 129, 0.2);
  color: #bbf7d0;
}

/* ปรับ badge ให้ดูมนขึ้น */
.stats-table-wrapper .badge {
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 500;
}

/* pagination */
.stats-pagination .pagination .page-link {
    background: #0b1020;
    border: 1px solid #1d2744;
    color: #3fa9ff;
}

.stats-pagination .pagination .page-item.active .page-link {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.stats-pagination .pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ------------------------------------------------
 * Responsive — Mobile view
 * ------------------------------------------------ */
@media (max-width: 767.98px) {
  .stats-panel-body canvas {
    height: 220px;
  }

  .stats-card-value {
    font-size: 24px;
  }
}
