/* =====================================================
   SUPER ADMIN LOGIN START
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
}

.super-login-page {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 28%), radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.18), transparent 30%), linear-gradient(135deg, #111827 0%, #172554 58%, #1e3a8a 100%);
  overflow: hidden;
}

.login-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.45;
  animation: loginFloat 7s ease-in-out infinite;
}

.login-shape-1 {
  width: 220px;
  height: 220px;
  background: rgba(249, 115, 22, 0.3);
  left: -70px;
  top: 120px;
}

.login-shape-2 {
  width: 260px;
  height: 260px;
  background: rgba(37, 99, 235, 0.32);
  right: -90px;
  bottom: 80px;
  animation-delay: 1.2s;
}

.super-login-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.super-login-left {
  padding: 60px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.super-login-left .login-logo {
  height: 92px;
  width: auto;
  margin-bottom: 34px;
}
.super-login-left h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.super-login-left p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 34px;
}

.login-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
}
.login-feature-item i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fb923c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.super-login-right {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  width: 100%;
  padding: 38px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18);
}

.login-card-header {
  margin-bottom: 28px;
}
.login-card-header span {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.login-card-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}
.login-card-header p {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.login-card .form-label {
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.custom-input-group .input-group-text {
  width: 52px;
  border-radius: 14px 0 0 14px;
  border: 1px solid #d1d5db;
  border-right: 0;
  background: #f8fafc;
  color: #2563eb;
  display: flex;
  justify-content: center;
  font-size: 18px;
}
.custom-input-group .form-control {
  height: 52px;
  border-radius: 0 14px 14px 0;
  border: 1px solid #d1d5db;
  box-shadow: none;
  font-size: 14px;
}
.custom-input-group .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-check-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}

.forgot-link {
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.forgot-link:hover {
  color: #f97316;
}

.btn-super-login {
  width: 100%;
  height: 54px;
  border-radius: 15px;
  border: 0;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24);
  transition: all 0.3s ease;
}
.btn-super-login i {
  margin-left: 6px;
}
.btn-super-login:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.login-footer-text {
  margin-top: 24px;
  text-align: center;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

@keyframes loginFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* =====================================================
   SUPER ADMIN LOGIN RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .super-login-page {
    padding: 40px 0;
  }
  .super-login-wrapper {
    grid-template-columns: 1fr;
  }
  .super-login-left {
    padding: 42px;
    text-align: center;
    align-items: center;
  }
  .super-login-left h1 {
    font-size: 36px;
  }
  .super-login-left .login-logo {
    height: 78px;
  }
  .login-feature-item {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .super-login-left {
    padding: 30px 24px;
  }
  .super-login-left h1 {
    font-size: 28px;
  }
  .super-login-left p {
    font-size: 14px;
  }
  .super-login-left .login-logo {
    height: 66px;
  }
  .super-login-right {
    padding: 20px;
  }
  .login-card {
    padding: 26px 22px;
    border-radius: 22px;
  }
  .login-card-header h2 {
    font-size: 24px;
  }
  .custom-input-group .form-control {
    height: 48px;
  }
  .custom-input-group .input-group-text {
    width: 48px;
  }
  .btn-super-login {
    height: 50px;
  }
}
/* =====================================================
   SUPER ADMIN LOGIN END
===================================================== */
/* =====================================================
   DASHBOARD LAYOUT START
===================================================== */
.dashboard-wrapper {
  display: flex;
  height: 100vh;
  background: #eef3f8;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.dashboard-main {
  flex: 1;
  height: 100vh;
  margin-left: 280px;
  overflow-y: auto;
}

.dashboard-content {
  padding: 28px;
}

/* =====================================================
   SIDEBAR START
===================================================== */
.super-sidebar {
  width: 280px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 45%, #eef4ff 100%);
  border-right: 1px solid #dbe4f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

/* =========================
   SIDEBAR HEADER
========================= */
.sidebar-header {
  height: 84px;
  min-height: 84px;
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #dbe4f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar-logo img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(249, 115, 22, 0.2)) drop-shadow(0 8px 18px rgba(37, 99, 235, 0.14));
}

.sidebar-close-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0f172a;
  display: none;
  align-items: center;
  justify-content: center;
}

/* =========================
   SIDEBAR MENU
========================= */
.sidebar-menu {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px 16px;
}
.sidebar-menu::-webkit-scrollbar {
  width: 0;
}
.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu ul li {
  margin-bottom: 7px;
}
.sidebar-menu ul li a {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}
.sidebar-menu ul li a i {
  width: 19px;
  min-width: 19px;
  font-size: 17px;
  color: #64748b;
  transition: all 0.25s ease;
}
.sidebar-menu ul li a span {
  line-height: 1.25;
}
.sidebar-menu ul li a:hover, .sidebar-menu ul li a.active {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.2);
  transform: translateX(3px);
}
.sidebar-menu ul li a:hover i, .sidebar-menu ul li a.active i {
  color: #ffffff;
}

.sidebar-menu-title {
  display: block;
  margin-bottom: 12px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

/* =========================
   SIDEBAR DROPDOWN
========================= */
.sidebar-dropdown .sidebar-dropdown-toggle {
  position: relative;
}
.sidebar-dropdown .sidebar-dropdown-toggle .dropdown-arrow {
  margin-left: auto;
  width: auto;
  min-width: auto;
  font-size: 12px;
  color: #94a3b8;
  transition: all 0.25s ease;
}
.sidebar-dropdown .sidebar-dropdown-toggle:hover .dropdown-arrow, .sidebar-dropdown .sidebar-dropdown-toggle.active .dropdown-arrow {
  color: #ffffff;
}
.sidebar-dropdown .sidebar-submenu {
  display: none;
  padding: 7px 0 3px 42px;
  margin: 0;
}
.sidebar-dropdown .sidebar-submenu li {
  margin-bottom: 5px;
}
.sidebar-dropdown .sidebar-submenu li a {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.sidebar-dropdown .sidebar-submenu li a:hover, .sidebar-dropdown .sidebar-submenu li a.active {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  box-shadow: none;
  transform: none;
}
.sidebar-dropdown.open .sidebar-dropdown-toggle {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}
.sidebar-dropdown.open .sidebar-dropdown-toggle i {
  color: #2563eb;
}
.sidebar-dropdown.open .sidebar-submenu {
  display: block;
}
.sidebar-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* =========================
   SIDEBAR BOTTOM
========================= */
.sidebar-bottom {
  padding: 16px;
  border-top: 1px solid #dbe4f0;
  background: rgba(255, 255, 255, 0.7);
}

.sidebar-logout-btn {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}
.sidebar-logout-btn i {
  margin-right: 8px;
}
.sidebar-logout-btn:hover {
  background: #ef4444;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =====================================================
   TOPBAR START
===================================================== */
.dashboard-topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  height: 84px;
  min-height: 84px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #dbe4f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-topbar h4 {
  font-size: 21px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.dashboard-topbar p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-menu-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-last-login {
  text-align: right;
}
.topbar-last-login span {
  display: block;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
}
.topbar-last-login strong {
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
}

.topbar-profile-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #2563eb);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

/* =====================================================
   DASHBOARD STAT CARDS
===================================================== */
.dashboard-stat-card {
  height: 108px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.stat-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.blue-gradient {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.orange-gradient {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.dark-gradient {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.red-gradient {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.stat-content {
  min-width: 0;
}
.stat-content h3 {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.stat-content p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  max-width: 120px;
}

/* =====================================================
   SIDEBAR MOBILE OVERLAY
===================================================== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
   DASHBOARD RESPONSIVE
===================================================== */
@media (max-width: 1199px) {
  .dashboard-main {
    margin-left: 260px;
  }
  .super-sidebar {
    width: 260px;
  }
  .dashboard-stat-card {
    height: 104px;
    padding: 18px;
  }
}
@media (max-width: 991px) {
  .super-sidebar {
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  .super-sidebar.show {
    transform: translateX(0);
  }
  .dashboard-main {
    margin-left: 0;
  }
  .sidebar-close-btn {
    display: flex;
  }
  .topbar-menu-btn {
    display: flex;
  }
  .dashboard-topbar {
    padding: 16px 20px;
  }
  .dashboard-content {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .dashboard-topbar {
    height: auto;
    min-height: 78px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .dashboard-topbar h4 {
    font-size: 18px;
  }
  .dashboard-topbar p {
    font-size: 12px;
  }
  .topbar-right {
    width: 100%;
    justify-content: space-between;
  }
  .topbar-profile-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 19px;
  }
  .dashboard-stat-card {
    height: 98px;
    padding: 16px;
  }
  .stat-icon {
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 23px;
  }
  .stat-content h3 {
    font-size: 24px;
  }
  .stat-content p {
    font-size: 12px;
  }
}
/* =====================================================
   DASHBOARD LAYOUT END
===================================================== */
/* =====================================================
   COMMON PAGE UI START
===================================================== */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.page-header h4 {
  font-size: 21px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.page-header p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.content-card {
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-back:hover {
  background: #0f172a;
  color: #ffffff;
}

/* =====================================================
   TABLE UI START
===================================================== */
.custom-table {
  margin: 0;
}
.custom-table thead th {
  padding: 13px 15px;
  background: #f8fafc;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}
.custom-table tbody td {
  padding: 14px 15px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #edf2f7;
  vertical-align: middle;
}
.custom-table tbody td strong {
  display: block;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}
.custom-table tbody td span {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-top: 3px;
}
.custom-table tbody tr:last-child td {
  border-bottom: 0;
}

.btn-table-action {
  min-width: 58px;
  height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 11px;
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  vertical-align: middle;
  transition: all 0.25s ease;
}
.btn-table-action:hover {
  background: #1d4ed8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.empty-table {
  padding: 30px !important;
  color: #94a3b8 !important;
}

.pagination-wrapper {
  margin-top: 18px;
}

/* =====================================================
   BADGES
===================================================== */
.badge-soft {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px !important;
  line-height: 28px;
  font-weight: 800 !important;
  margin-top: 0 !important;
  vertical-align: middle;
}

.badge-success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d !important;
}

.badge-warning {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c !important;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626 !important;
}

.badge-muted {
  background: #f1f5f9;
  color: #64748b !important;
}

/* =====================================================
   DETAIL PAGE UI
===================================================== */
.detail-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.detail-card-header h5 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-item {
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f7;
}
.detail-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.detail-item span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}
.detail-item strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

/* =====================================================
   COMMON PAGE UI RESPONSIVE
===================================================== */
@media (max-width: 575px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-header h4 {
    font-size: 19px;
  }
  .content-card {
    padding: 18px;
    border-radius: 18px;
  }
}
/* =====================================================
   REQUEST ACTION BUTTONS START
===================================================== */
.request-action-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-approve-request,
.btn-reject-request {
  height: 42px;
  padding: 0 18px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  transition: all 0.25s ease;
}

.btn-approve-request {
  background: #2563eb;
  color: #ffffff;
}
.btn-approve-request:hover {
  background: #1d4ed8;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-reject-request {
  background: #ef4444;
  color: #ffffff;
}
.btn-reject-request:hover {
  background: #dc2626;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =====================================================
   REQUEST ACTION BUTTONS END
===================================================== */
/* =====================================================
   COMMON PAGE UI END
===================================================== */
/* =====================================================
   SOCIETY SETUP PAGE START
===================================================== */
.setup-form-control {
  height: 46px;
  border-radius: 13px;
  border: 1px solid #dbe4f0;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  box-shadow: none;
  transition: all 0.25s ease;
}
.setup-form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* Textarea */
textarea.setup-form-control {
  height: auto;
  min-height: 110px;
  resize: none;
  padding-top: 12px;
}

/* =====================================================
   SAVE PLAN BUTTON
===================================================== */
.btn-save-plan {
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-save-plan:hover {
  background: #1d4ed8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.btn-edit-action {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706 !important;
  border: 1px solid rgba(245, 158, 11, 0.18);
}
.btn-edit-action:hover {
  background: #f59e0b;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* =====================================================
   SUBSCRIPTION SUMMARY
===================================================== */
.subscription-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.summary-item {
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f7;
}
.summary-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.summary-item span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}
.summary-item strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

/* =====================================================
   MODULE GRID
===================================================== */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.module-item {
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  transition: all 0.25s ease;
}
.module-item i {
  font-size: 16px;
}
.module-item span {
  line-height: 1.3;
}
.module-item.enabled {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.14);
}
.module-item.disabled {
  background: #f1f5f9;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}

/* =====================================================
   EMPTY INFO BOX
===================================================== */
.empty-info-box {
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border: 1px dashed #dbe4f0;
}

/* =====================================================
   PASSWORD ALERT
===================================================== */
.password-alert {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.18);
  margin-bottom: 14px;
}
.password-alert span {
  display: block;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}
.password-alert strong {
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  word-break: break-all;
}

/* =====================================================
   SETUP ACTIONS
===================================================== */
.setup-action-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.setup-action-list form {
  width: 100%;
  margin: 0;
}

.btn-setup-action {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.25s ease;
}
.btn-setup-action i {
  font-size: 17px;
}
.btn-setup-action:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

/* Success Action */
.success-action:hover {
  background: #16a34a !important;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.2) !important;
}

/* Danger Action */
.danger-action:hover {
  background: #ef4444 !important;
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.2) !important;
}

/* =====================================================
   SOCIETY EDIT PAGE START
===================================================== */
.content-card .form-label {
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 7px;
}

.setup-form-control[readonly] {
  background: #f8fafc;
  color: #64748b;
  cursor: not-allowed;
}

.custom-alert {
  border: 0;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* =====================================================
   SOCIETY EDIT PAGE END
===================================================== */
/* =====================================================
   SOCIETY SETUP PAGE RESPONSIVE
===================================================== */
@media (max-width: 767px) {
  .module-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .btn-save-plan {
    width: 100%;
  }
  .summary-item strong {
    font-size: 13px;
  }
  .password-alert strong {
    font-size: 16px;
  }
}
/* =====================================================
   SOCIETY SETUP PAGE END
===================================================== */
/* =====================================================
   SUBSCRIPTION PAGE START
===================================================== */
.filter-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  min-width: 120px;
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  color: #2563eb;
  transform: translateY(-2px);
}
.filter-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

.badge-secondary {
  background: rgba(100, 116, 139, 0.12);
  color: #64748b;
}

.custom-table thead th {
  white-space: nowrap;
}
.custom-table tbody td {
  vertical-align: middle;
  white-space: nowrap;
}

/* =====================================================
   TABLE ACTION BUTTONS
===================================================== */
.table-action-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.btn-table-view {
  height: 36px;
  padding: 0 14px;
  border-radius: 11px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-table-view:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-table-edit {
  height: 36px;
  padding: 0 14px;
  border-radius: 11px;
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-table-edit:hover {
  background: #f97316;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =====================================================
   SUBSCRIPTION PAGE RESPONSIVE
===================================================== */
@media (max-width: 767px) {
  .filter-wrapper {
    gap: 10px;
  }
  .filter-btn {
    width: 100%;
  }
}
/* =====================================================
   SUBSCRIPTION PAGE END
===================================================== */
/* =====================================================
   FORM BUTTON START
===================================================== */
.btn-save-form {
  height: 44px;
  padding: 0 20px;
  border-radius: 13px;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-save-form:hover {
  background: #1d4ed8;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =====================================================
   FORM BUTTON END
===================================================== *//*# sourceMappingURL=style.css.map */