/* =========================================================
   SECURITY PAGE
========================================================= */

.security-page {
  background: #edf4ef;
  min-height: 100vh;
  padding: 35px 15px 60px;
}

.security-container {
  max-width: 980px;
  margin: 0 auto;
}

.security-main-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px 24px 36px;
  box-shadow: 0 18px 40px rgba(13, 61, 31, 0.08);
  border: 1px solid rgba(18, 91, 42, 0.06);
}

/* HERO */
.security-hero {
  text-align: center;
  margin-bottom: 38px;
}

.security-title {
  font-size: 48px;
  font-weight: 800;
  color: #0f6b34;
  margin-bottom: 14px;
  line-height: 1.2;
}

.security-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: #6b7280;
}

.security-subtitle strong {
  color: #415c49;
  font-weight: 700;
}

/* SECTION */
.security-section {
  margin-bottom: 42px;
}

.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.verified-title {
  color: #17803d;
}

.fraud-title {
  color: #b32727;
}

.title-line {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  margin: 0 auto 20px;
}

.verified-line {
  background: #5fbf7a;
}

.fraud-line {
  background: #c94545;
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
}

.security-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(13, 61, 31, 0.05);
}

.security-table thead th {
  background: #136f33;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 14px;
  text-align: left;
}

.security-table tbody td {
  padding: 16px 14px;
  font-size: 15px;
  color: #374151;
  border-top: 1px solid #eef2f0;
  background: #fff;
}

.security-table tbody tr:hover td {
  background: #f8fbf9;
}

.security-table a {
  color: #1f88c7;
  font-weight: 700;
  text-decoration: none;
}

.security-table a:hover {
  text-decoration: underline;
}

/* STATUS */
.status-icon {
  font-size: 22px;
  font-weight: 800;
  width: 50px;
}

.status-icon.verified {
  color: #22a055;
}

.status-icon.fraud {
  color: #c53333;
}

.empty-msg {
  text-align: center;
  color: #6b7280;
  font-size: 15px;
  padding: 22px;
}

/* NOTE BOX */
.security-note-box {
  background: #fff8e1;
  border: 1px solid #efd68b;
  color: #7a5b0b;
  padding: 22px 22px;
  border-radius: 18px;
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}

.security-note-box strong {
  font-weight: 800;
}

/* MOBILE */
@media (max-width: 768px) {
  .security-page {
    padding: 24px 12px 45px;
  }

  .security-main-card {
    padding: 28px 14px 24px;
    border-radius: 22px;
  }

  .security-title {
    font-size: 34px;
  }

  .security-subtitle {
    font-size: 14px;
    line-height: 1.8;
  }

  .section-title {
    font-size: 22px;
  }

  .security-table thead th,
  .security-table tbody td {
    font-size: 13px;
    padding: 13px 10px;
  }

  .status-icon {
    font-size: 18px;
  }

  .security-note-box {
    font-size: 15px;
    padding: 18px 16px;
  }
}