/* ─── SYSTEM CORE DESIGN TOKENS ────────────────────────────────────────── */

:root {
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;

  --primary: #00f2fe;
  --primary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --secondary: #ff0844;
  --secondary-gradient: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
  --success: #00b0ff;
  --success-gradient: linear-gradient(135deg, #00b0ff 0%, #80d8ff 100%);
  --accent: #f9d423;
  --accent-gradient: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);

  /* Layout */
  --sidebar-width: 280px;
  --header-height: 80px;
  --border-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Default Theme (Dark) Variables */
  --bg-dark: #070913;
  --bg-darker: #04050b;
  --card-glass: rgba(16, 22, 42, 0.4);
  --border-glass: rgba(255, 255, 255, 0.07);
  --border-glass-focus: rgba(255, 255, 255, 0.15);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #4b5563;
  --sidebar-bg: rgba(10, 12, 22, 0.6);
  --sidebar-hover: rgba(255, 255, 255, 0.05);
  --table-hover: rgba(255, 255, 255, 0.02);
  --input-bg: rgba(255, 255, 255, 0.03);
  --modal-bg: rgba(16, 22, 42, 0.85);
}

/* Light Theme Variables overrides */
body.light-theme {
  --bg-dark: #f8fafc;
  --bg-darker: #e2e8f0;
  --card-glass: rgba(255, 255, 255, 0.65);
  --border-glass: rgba(0, 0, 0, 0.08);
  --border-glass-focus: rgba(0, 0, 0, 0.15);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-dark: #94a3b8;
  --sidebar-bg: rgba(241, 245, 249, 0.85);
  --sidebar-hover: rgba(0, 0, 0, 0.05);
  --table-hover: rgba(0, 0, 0, 0.015);
  --input-bg: rgba(0, 0, 0, 0.02);
  --modal-bg: rgba(255, 255, 255, 0.95);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-primary);
  overflow-x: hidden;
  height: 100vh;
  /* Glow effects backgrounds */
  background-image:
    radial-gradient(circle at 10% 20%, rgba(79, 172, 254, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 8, 68, 0.06) 0%, transparent 40%);
  background-attachment: fixed;
}

/* ─── APP LAYOUT STRUCTURE ────────────────────────────────────────────── */

.app-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* Sidebar Styling */
.sidebar {
  width: var(--sidebar-width);
  height: 100%;
  background: var(--sidebar-bg);
  backdrop-filter: blur(25px);
  border-right: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  z-index: 100;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  background: var(--secondary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 8, 68, 0.3);
}

.logo-icon {
  font-size: 20px;
  color: white;
}

.brand-info h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.brand-info span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  transition: var(--transition);
}

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

.menu-item:hover,
.menu-item.active {
  color: var(--text-main);
  background: var(--sidebar-hover);
}

.menu-item.active {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.05) 100%);
  border-left: 3px solid #00f2fe;
}

.sidebar-footer {
  margin-top: auto;
}

.db-status {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.online {
  background-color: #00e676;
  box-shadow: 0 0 10px #00e676;
}

/* Main Content Area */
.main-content {
  flex-grow: 1;
  height: 100%;
  overflow-y: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Header Area */
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.header-title p {
  color: var(--text-muted);
  font-size: 14px;
}

.project-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-glass);
  border: 1px solid var(--border-glass);
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #00f2fe;
}

/* ─── TAB SYSTEM ────────────────────────────────────────────────────────── */

.tab-pane {
  display: none;
  flex-direction: column;
  gap: 30px;
  animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── DASHBOARD METRICS CARDS ───────────────────────────────────────────── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.stat-card {
  background: var(--card-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-focus);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.users-bg {
  background: var(--primary-gradient);
  box-shadow: 0 8px 20px rgba(79, 172, 254, 0.2);
}

.premium-bg {
  background: var(--accent-gradient);
  box-shadow: 0 8px 20px rgba(255, 78, 80, 0.2);
}

.logs-bg {
  background: var(--secondary-gradient);
  box-shadow: 0 8px 20px rgba(255, 8, 68, 0.2);
}

.water-bg {
  background: var(--success-gradient);
  box-shadow: 0 8px 20px rgba(0, 176, 255, 0.2);
}

.stat-info h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.stat-info p {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.stat-trend {
  font-size: 11px;
  font-weight: 600;
  color: #00e676;
}

.stat-subtext {
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── CHARTS SECTION ────────────────────────────────────────────────────── */

.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1024px) {
  .charts-grid {
    grid-template-columns: 1fr;
  }
}

.chart-card {
  background: var(--card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.card-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.chart-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── TABLES AND CARDS ──────────────────────────────────────────────────── */

.table-card {
  background: var(--card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.table-actions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  min-width: 300px;
}

.search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
}

.search-box input {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border-glass);
  padding: 12px 16px 12px 46px;
  color: var(--text-main);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: #00f2fe;
  background: var(--input-bg);
}

.filter-group {
  display: flex;
  background: var(--input-bg);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--sidebar-hover);
  color: var(--text-main);
}

.table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  padding: 16px 20px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-glass);
}

.data-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-glass);
  vertical-align: middle;
}

.data-table tbody tr {
  transition: var(--transition);
}

.data-table tbody tr:hover {
  background: var(--table-hover);
}

/* User avatars and badges */
.avatar-cell {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  color: #00f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1.5px solid rgba(0, 242, 254, 0.3);
}

.avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.plan-badge {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.plan-badge.free {
  background: rgba(156, 163, 175, 0.15);
  color: var(--text-muted);
}

.plan-badge.pro {
  background: rgba(255, 78, 80, 0.15);
  color: #ff4e50;
  border: 1px solid rgba(255, 78, 80, 0.3);
}

.plan-badge.blocked {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

input#edit-blocked-toggle:checked + .slider {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important;
}

.action-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.action-btn:hover {
  background: #00f2fe;
  color: #04050b;
  border-color: #00f2fe;
}

/* Food Log specific photo preview */
.food-preview {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid var(--border-glass);
  overflow: hidden;
}

.food-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Helper utilities */
.text-center {
  text-align: center;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.text-muted {
  color: var(--text-muted) !important;
}

.w-bold {
  font-weight: 700;
}

/* ─── CONFIGURATION SETTINGS VIEW ──────────────────────────────────────── */

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.settings-card {
  background: var(--card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 24px;
}

.settings-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  background: var(--input-bg);
  border: 1px solid var(--border-glass);
  padding: 12px 16px;
  color: var(--text-main);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
}

.form-group select option {
  background-color: var(--bg-darker);
  color: var(--text-main);
}

.form-group input:disabled {
  color: var(--text-muted);
  cursor: not-allowed;
}

.inline-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* ─── MODAL OVERLAY AND CONTENTS ────────────────────────────────────────── */

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 5, 11, 0.85);
  backdrop-filter: blur(15px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  width: 550px;
  max-width: 90%;
  background: var(--modal-bg);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 16px;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 700;
}

.close-modal-btn {
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal-btn:hover {
  color: var(--text-main);
}

.user-modal-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
}

.large-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #04050b;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.user-modal-meta h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-main);
}

.user-modal-meta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

/* Switch styling for plan toggle */
.toggle-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--input-bg);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

.toggle-container span {
  font-size: 14px;
  font-weight: 500;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--text-dark);
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked+.slider {
  background-color: #00f2fe;
}

input:focus+.slider {
  box-shadow: 0 0 1px #00f2fe;
}

input:checked+.slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: var(--sidebar-hover);
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  color: #04050b;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
  transform: translateY(-1px);
}

.modal-divider {
  height: 1px;
  background: var(--border-glass);
  margin: 20px 0;
}

/* Login screen overlay */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-darker);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 8, 68, 0.08) 0%, transparent 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.login-card {
  width: 420px;
  max-width: 90%;
  background: var(--modal-bg);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(25px);
  text-align: center;
}

.login-header {
  margin-bottom: 30px;
}

.login-logo {
  width: 60px;
  height: 60px;
  background: var(--secondary-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 25px rgba(255, 8, 68, 0.35);
}

.login-header h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.login-header p {
  color: var(--text-muted);
  font-size: 13px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

/* ─── RESPONSIVE STYLING (MEDIA QUERIES) ──────────────────────────────── */

/* Mobile Header (Hidden by default on Desktop) */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  background: var(--sidebar-bg);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0 20px;
  z-index: 99;
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--sidebar-hover);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}

.mobile-brand span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 5, 11, 0.6);
  backdrop-filter: blur(8px);
  z-index: 999;
}

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

@media (max-width: 768px) {
  /* Layout Adjustments */
  .app-container {
    flex-direction: column;
  }

  .mobile-header {
    display: flex;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: -280px; /* Offscreen by default */
    width: var(--sidebar-width);
    height: 100vh;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sidebar.active {
    transform: translateX(280px); /* Slide in */
  }

  .main-content {
    padding: 24px 16px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    gap: 20px;
  }

  /* Grid layouts */
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .settings-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 580px) {
  /* Header section */
  .content-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  /* Tables Filter and Search Action Headers */
  .table-actions-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .search-box {
    width: 100%;
    min-width: unset;
  }

  .filter-group {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 4px;
    display: flex;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
  }

  /* Modal Form adjustments */
  .modal-content {
    padding: 20px 16px;
    max-width: 95%;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .modal-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 10px;
    margin-top: 15px;
  }

  .modal-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  /* Login card */
  .login-card {
    padding: 30px 20px;
  }
}