/* ============================================================
   TNC SPORTS - AUTH & DASHBOARD STYLESHEET
   ============================================================ */

/* Auth container and center wrapper */
.auth-wrapper {
  min-height: calc(100vh - 120px); /* accounting for header/footer */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
  position: relative;
}

.auth-card {
  width: 100%;
  max-width: 520px;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}

.auth-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.auth-card-inner {
  position: relative;
  z-index: 1;
}

/* Tabs for Login (Password vs OTP) */
.auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 30px;
}

.auth-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--ease);
}

.auth-tab-btn.active {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.input-group-custom {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--gray);
  font-size: 16px;
  pointer-events: none;
}

.form-control-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px 12px 42px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--ease);
}

.form-control-custom:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.15);
}

.password-toggle {
  position: absolute;
  right: 14px;
  color: var(--gray);
  cursor: pointer;
  font-size: 16px;
  transition: var(--ease);
}
.password-toggle:hover {
  color: var(--white);
}

/* Remember Me & Forgot Password wrapper */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 25px;
}

.checkbox-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--gray);
  user-select: none;
}

.checkbox-custom input {
  display: none;
}

.checkbox-box {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}

.checkbox-custom input:checked + .checkbox-box {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-custom input:checked + .checkbox-box::after {
  content: '\F26E'; /* bootstrap-icon check */
  font-family: 'bootstrap-icons';
  font-size: 12px;
  color: var(--bg-dark);
  font-weight: bold;
}

.forgot-link {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  transition: var(--ease);
}
.forgot-link:hover {
  color: var(--gold-hover);
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

/* Social Buttons */
.social-login-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
  color: var(--gray-dark);
  font-size: 12px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-login-separator::before,
.social-login-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-login-separator:not(:empty)::before {
  margin-right: .5em;
}

.social-login-separator:not(:empty)::after {
  margin-left: .5em;
}

.social-btn-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.social-btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
}

.social-btn-custom:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.social-btn-custom svg {
  width: 16px;
  height: 16px;
}

/* OTP Code inputs */
.otp-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.otp-box {
  width: 48px;
  height: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
  transition: var(--ease);
}

.otp-box:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Signup specific styles: Progress Header */
.signup-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
  padding: 0 10px;
}

.signup-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.progress-bar-fill {
  position: absolute;
  top: 15px;
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 1;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px var(--gold);
}

.progress-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  transition: var(--ease);
}

.progress-step.active .step-node {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.progress-step.completed .step-node {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.step-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: 0.5px;
  transition: var(--ease);
}

.progress-step.active .step-label {
  color: var(--white);
}

/* Step Content sliding */
.step-content {
  display: none;
}

.step-content.active {
  display: block;
  animation: slideFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Role Selection Grid */
.role-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

@media (min-width: 480px) {
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.role-card-custom {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.role-card-custom:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.02);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.08);
}

.role-card-custom.selected {
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.role-card-custom.selected::after {
  content: '\F272'; /* Check circle fill */
  font-family: 'bootstrap-icons';
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--gold);
  font-size: 16px;
}

.role-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
  color: var(--gray-light);
  transition: var(--ease);
}

.role-card-custom:hover .role-icon-box,
.role-card-custom.selected .role-icon-box {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 0 10px var(--gold-glow);
}

.role-title-custom {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.role-desc-custom {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray);
  line-height: 1.4;
}

/* Nav Buttons signup */
.step-nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
}

/* Multi-select sports grid */
.sports-multiselect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-height: 150px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.2);
}

/* Scrollbar inside multi-select */
.sports-multiselect-grid::-webkit-scrollbar {
  width: 4px;
}
.sports-multiselect-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* Verification Code screen */
.verification-subtext {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 25px;
}

.timer-text {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-dark);
  text-align: center;
  margin-top: 15px;
}

.timer-resend-link {
  color: var(--gold);
  cursor: pointer;
  font-weight: 700;
  transition: var(--ease);
}
.timer-resend-link:hover {
  color: var(--gold-hover);
  text-shadow: 0 0 6px var(--gold-glow);
}

/* Demo account quick links box */
.demo-accounts-box {
  background: rgba(59, 130, 246, 0.04);
  border: 1px dashed rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  margin-top: 35px;
  text-align: center;
}

.demo-box-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 10px;
}

.demo-btn-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.demo-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--gray-light);
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 5px 10px;
  cursor: pointer;
  transition: var(--ease);
}
.demo-btn:hover {
  border-color: var(--blue-accent);
  color: var(--white);
  background: rgba(59, 130, 246, 0.1);
}


/* ============================================================
   PREMIUM DASHBOARD SHELL LAYOUT
   ============================================================ */
.dashboard-layout {
  min-height: 100vh;
  display: flex;
  background-color: var(--bg-dark);
}

/* Sidebar Navigation */
.dashboard-sidebar {
  width: 260px;
  background: rgba(6, 11, 25, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: var(--ease);
  z-index: 100;
}

.sidebar-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-user {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar-custom {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-accent) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-family: var(--font-head);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.user-info-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.user-name-custom {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.user-role-badge {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.sidebar-menu {
  flex: 1;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--ease);
}

.menu-item-custom:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.menu-item-custom.active {
  color: var(--gold);
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.1);
  box-shadow: inset 0 0 8px rgba(245, 158, 11, 0.03);
}

.menu-item-custom i {
  font-size: 16px;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.logout-btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  background: transparent;
  color: #ef4444;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--ease);
}
.logout-btn-custom:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: #ef4444;
}

/* Dashboard Content Main Workspace */
.dashboard-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0; /* allows child grids to shrink */
  overflow-y: auto;
  height: 100vh;
}

.dashboard-header-custom {
  height: 70px;
  background: rgba(4, 8, 20, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
  position: sticky;
  top: 0;
  z-index: 90;
}

.dashboard-title-box {
  display: flex;
  flex-direction: column;
}

.dashboard-welcome {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
}

.dashboard-date {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray);
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.notification-btn-custom {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: var(--ease);
}
.notification-btn-custom:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.notification-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}

/* Main inner panel container */
.dashboard-viewport {
  padding: 35px;
  flex: 1;
}

/* Analytics & Grid layout elements */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .metrics-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card-custom {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-data {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 5px;
}

.metric-label-custom {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-trend {
  font-size: 11px;
  font-weight: bold;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.metric-trend.up {
  color: #10b981;
}

.metric-trend.down {
  color: #ef4444;
}

.metric-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.metric-icon-box.gold {
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.metric-icon-box.blue {
  background: rgba(59, 130, 246, 0.08);
  color: var(--blue-accent);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.metric-icon-box.purple {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.metric-icon-box.green {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Grid Sections: Main Widget Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .dashboard-grid-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .dashboard-grid-1-1 {
    grid-template-columns: 1fr 1fr;
  }
}

.dashboard-widget {
  padding: 24px;
}

.widget-header-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 12px;
}

.widget-title-custom {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-action-link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  transition: var(--ease);
}
.widget-action-link:hover {
  color: var(--gold-hover);
}

/* Custom Table inside widget */
.table-custom-wrapper {
  overflow-x: auto;
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
}

.table-custom th {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.table-custom td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13.5px;
  color: var(--gray-light);
}

.table-custom tr:last-child td {
  border-bottom: none;
}

.table-custom tr:hover td {
  background: rgba(255, 255, 255, 0.01);
  color: var(--white);
}

/* Badge styles */
.badge-custom {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-custom.gold {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold);
}

.badge-custom.blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-accent);
}

.badge-custom.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.badge-custom.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Custom list items inside widget */
.list-custom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.list-item-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.list-item-custom:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.list-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-item-avatar {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray);
}

.list-item-text {
  display: flex;
  flex-direction: column;
}

.list-item-title {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
}

.list-item-subtitle {
  font-size: 11px;
  color: var(--gray);
}

.list-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.list-item-value {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
}

/* Parent Child Switcher Dropdown */
.child-selector-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 20px;
  transition: var(--ease);
}
.child-selector-wrapper:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Mobile Sidebar Toggle Hamburger (Overlay) */
.mobile-dash-toggle {
  display: none;
  font-size: 22px;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  margin-right: 15px;
}

@media (max-width: 991px) {
  .dashboard-sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    bottom: 0;
    z-index: 1010;
  }
  .dashboard-sidebar.show {
    left: 0;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
  }
  .mobile-dash-toggle {
    display: block;
  }
  .dashboard-header-custom {
    padding: 0 20px;
  }
  .dashboard-viewport {
    padding: 20px;
  }
}

/* Backdrop overlay when sidebar opened on mobile */
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1005;
}

.sidebar-backdrop.show {
  display: block;
}
