/* ═══════════════════════════════════════════════════════════════
   Design System — Dark Glassmorphism Theme
   Modern, premium authentication UI with smooth animations.
   ═══════════════════════════════════════════════════════════════ */

/* ── Imports ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ───────────────────────────────────── */
:root {
  /* Colors */
  --bg-primary: #06060f;
  --bg-secondary: #0d0d1f;
  --bg-card: rgba(15, 15, 35, 0.7);
  --bg-card-hover: rgba(20, 20, 50, 0.8);
  --bg-input: rgba(20, 20, 50, 0.5);
  --bg-input-focus: rgba(30, 30, 65, 0.6);

  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-glow: rgba(99, 102, 241, 0.25);
  --accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: #a5b4fc;

  --border-default: rgba(99, 102, 241, 0.15);
  --border-focus: rgba(99, 102, 241, 0.5);
  --border-card: rgba(99, 102, 241, 0.12);

  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.1);
  --warning: #f59e0b;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-card);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --shadow-btn: 0 4px 20px rgba(99, 102, 241, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  transform: none !important;
  /* Force no rotation */
}

/* ── Animated Background ─────────────────────────────────────── */
.bg-animate {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-animate::before,
.bg-animate::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.bg-animate::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
  top: -10%;
  right: -10%;
}

.bg-animate::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 70%);
  bottom: -10%;
  left: -10%;
  animation-delay: -10s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

/* Mesh grid overlay */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── Layout ──────────────────────────────────────────────────── */
.page-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  transform: none !important;
  /* Force no rotation */
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  animation: cardEnter 0.6s var(--transition-smooth);
}

.auth-card.wide {
  max-width: 560px;
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

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

/* ── Logo / Header ───────────────────────────────────────────── */
.auth-header {
  text-align: center;
  margin-bottom: 36px;
}

.auth-logo {
  width: 56px;
  height: 56px;
  background: var(--accent-gradient);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-glow);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: var(--shadow-glow);
  }

  50% {
    box-shadow: 0 0 60px var(--accent-glow);
  }
}

.auth-header h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 6px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group label .required {
  color: var(--error);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--border-focus);
  background: var(--bg-input-focus);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px var(--error-bg);
}

.form-input.success {
  border-color: var(--success);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.field-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  display: none;
  animation: slideDown 0.2s ease;
}

.field-error.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

/* Password toggle */
.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: var(--transition-fast);
}

.password-toggle:hover {
  color: var(--text-accent);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  width: 100%;
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(99, 102, 241, 0.45);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: var(--border-focus);
}

.btn-link {
  background: none;
  border: none;
  color: var(--text-accent);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  font-weight: 500;
  transition: var(--transition-fast);
}

.btn-link:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

/* Loading spinner inside button */
.btn .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}

.btn.loading .spinner {
  display: block;
}

.btn.loading .btn-text {
  opacity: 0.6;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Alert Messages ──────────────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
  animation: slideDown 0.3s ease;
  line-height: 1.5;
}

.alert.show {
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert-success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ── Tab Switcher ────────────────────────────────────────────── */
.tab-switcher {
  display: flex;
  background: var(--bg-input);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 28px;
  border: 1px solid var(--border-default);
}

.tab-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.tab-btn.active {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.tab-btn:not(.active):hover {
  color: var(--text-secondary);
  background: rgba(99, 102, 241, 0.06);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

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

/* ── OTP Input Group ─────────────────────────────────────────── */
.otp-input-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 24px 0;
}

.otp-input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  background: var(--bg-input);
  border: 2px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: var(--transition-fast);
  caret-color: var(--accent-primary);
}

.otp-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-input-focus);
}

/* ── Links & Footer ──────────────────────────────────────────── */
.auth-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--text-accent);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.auth-footer a:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-default);
}

/* ── Social Sign-In Buttons ──────────────────────────────────── */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-default);
  background: var(--bg-input);
  color: var(--text-primary);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-social::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 60%);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-social:hover {
  transform: translateY(-2px);
  border-color: var(--border-focus);
  background: var(--bg-input-focus);
}

.btn-social:hover::before {
  opacity: 1;
}

.btn-social:active {
  transform: translateY(0);
}

.btn-social svg {
  flex-shrink: 0;
}

/* Google */
.btn-google:hover {
  border-color: rgba(66, 133, 244, 0.5);
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.15);
}

.btn-social.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ── Modal Overlay ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.modal-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
  animation: cardEnter 0.4s ease;
  text-align: center;
}

.modal-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.modal-card p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 4px;
}

.modal-card .email-highlight {
  color: var(--text-accent);
  font-weight: 600;
}

.resend-timer {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   DASHBOARD STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── Dashboard Layout ────────────────────────────────────────── */
.dashboard-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  min-height: 100vh;
}

/* ── Top Nav ─────────────────────────────────────────────────── */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  animation: cardEnter 0.5s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-brand h2 {
  font-size: 18px;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(239, 68, 68, 0.08);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
}

/* ── Welcome Banner ──────────────────────────────────────────── */
.welcome-banner {
  padding: 32px;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  animation: cardEnter 0.6s ease;
}

.welcome-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.welcome-banner h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
}

.welcome-banner h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-banner p {
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
}

/* ── Avatar Section ──────────────────────────────────────────── */
.welcome-content {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

.avatar-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.avatar-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid transparent;
  background-image: var(--accent-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 24px var(--accent-glow);
  transition: var(--transition-smooth);
}

.avatar-container:hover {
  box-shadow: 0 0 36px rgba(99, 102, 241, 0.4);
  transform: scale(1.04);
}

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

.avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 50%;
  user-select: none;
}

.avatar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-fast);
  font-size: 24px;
}

.avatar-container:hover .avatar-overlay {
  opacity: 1;
}

.avatar-loading {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
}

.avatar-loading.active {
  display: flex;
}

.avatar-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.remove-photo-btn {
  background: none;
  border: none;
  color: var(--error);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
}

.remove-photo-btn:hover {
  background: var(--error-bg);
  text-decoration: underline;
}

.welcome-text {
  flex: 1;
  min-width: 0;
}

/* ── Profile Section ─────────────────────────────────────────── */
.section-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
  animation: cardEnter 0.7s ease;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.btn-edit {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--text-accent);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-edit:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--border-focus);
}

/* Profile grid */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.profile-field {
  padding: 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.profile-field:hover {
  border-color: var(--border-focus);
  background: var(--bg-input-focus);
}

.profile-field .field-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.profile-field .field-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  word-break: break-word;
}

.profile-field.full-width {
  grid-column: 1 / -1;
}

/* Status badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-verified {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-unverified {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ── Edit Mode ───────────────────────────────────────────────── */
.edit-form {
  display: none;
}

.edit-form.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.profile-view.hidden {
  display: none;
}

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

.form-actions .btn {
  min-width: 120px;
}

/* ── Skeleton Loading ────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg,
      var(--bg-input) 0%,
      rgba(99, 102, 241, 0.08) 50%,
      var(--bg-input) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 16px;
  width: 70%;
  margin-bottom: 8px;
}

.skeleton-text.short {
  width: 40%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .auth-card {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .auth-header h1 {
    font-size: 22px;
  }

  .otp-input {
    width: 42px;
    height: 50px;
    font-size: 18px;
  }

  .top-nav {
    padding: 12px 16px;
  }

  .welcome-banner {
    padding: 24px;
  }

  .welcome-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .welcome-banner h1 {
    font-size: 22px;
  }

  .avatar-container {
    width: 80px;
    height: 80px;
  }

  .avatar-initials {
    font-size: 26px;
  }

  .section-card {
    padding: 24px 20px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .page-container {
    padding: 12px;
  }

  .auth-card {
    padding: 24px 16px;
  }

  .otp-input-group {
    gap: 6px;
  }

  .otp-input {
    width: 38px;
    height: 46px;
    font-size: 16px;
  }
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-8 {
  margin-bottom: 8px;
}

.hidden {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════════════
   NOTES SECTION
   ══════════════════════════════════════════════════════════════════ */

/* ── Notes Grid ─────────────────────────────────────────────────── */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

/* ── Note Card ──────────────────────────────────────────────────── */
.note-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-top: 3px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.note-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ── Color Variants (top border accent) ─────────────────────────── */
.note-color-default {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.note-color-blue {
  border-top-color: #60a5fa;
}

.note-color-green {
  border-top-color: #34d399;
}

.note-color-purple {
  border-top-color: #a78bfa;
}

.note-color-amber {
  border-top-color: #fbbf24;
}

.note-color-rose {
  border-top-color: #fb7185;
}

.note-color-blue:hover {
  box-shadow: 0 12px 40px rgba(96, 165, 250, 0.15);
}

.note-color-green:hover {
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.15);
}

.note-color-purple:hover {
  box-shadow: 0 12px 40px rgba(167, 139, 250, 0.15);
}

.note-color-amber:hover {
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.15);
}

.note-color-rose:hover {
  box-shadow: 0 12px 40px rgba(251, 113, 133, 0.15);
}

/* ── Pin Badge ──────────────────────────────────────────────────── */
.pin-badge {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 14px;
  opacity: 0.8;
}

/* ── Note Title ─────────────────────────────────────────────────── */
.note-card-header {
  padding-right: 24px;
}

.note-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
}

/* ── Note Content ───────────────────────────────────────────────── */
.note-content {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  white-space: pre-wrap;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Note Footer ────────────────────────────────────────────────── */
.note-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.note-date {
  font-size: 0.75rem;
  color: #64748b;
}

.note-actions {
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.note-card:hover .note-actions {
  opacity: 1;
}

.note-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background 0.2s ease;
  line-height: 1;
}

.note-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.note-action-delete:hover {
  background: rgba(239, 68, 68, 0.15);
}

.note-action-restore:hover {
  background: rgba(16, 185, 129, 0.15);
}

/* ── Empty State ────────────────────────────────────────────────── */
.notes-empty {
  display: none;
  text-align: center;
  padding: 48px 20px;
  color: #64748b;
}

.notes-empty .empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.6;
}

.notes-empty p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════
   MODAL
   ══════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-card {
  transform: translateY(0) scale(1);
}

.modal-card h2 {
  font-size: 1.3rem;
  color: #f1f5f9;
  margin-bottom: 24px;
  font-weight: 700;
}

/* ── Color Picker ───────────────────────────────────────────────── */
.color-picker {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
}

.color-dot:hover {
  transform: scale(1.15);
}

.color-dot.active {
  border-color: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  transform: scale(1.15);
}

.color-dot[data-color="default"] {
  background: linear-gradient(135deg, #374151, #4b5563);
}

.color-dot[data-color="blue"] {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.color-dot[data-color="green"] {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.color-dot[data-color="purple"] {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.color-dot[data-color="amber"] {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.color-dot[data-color="rose"] {
  background: linear-gradient(135deg, #f43f5e, #fb7185);
}

/* ══════════════════════════════════════════════════════════════════
   NOTE IMAGE STYLES
   ══════════════════════════════════════════════════════════════════ */

/* ── Note Card Image ───────────────────────────────────────────── */
.note-card-image {
  margin: -20px -20px 0 -20px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  max-height: 200px;
}

.note-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.note-card:hover .note-card-image img {
  transform: scale(1.03);
}

/* ── Note Image Upload (Modal) ─────────────────────────────────── */
.note-image-upload {
  margin-top: 4px;
}

.note-image-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  border: 2px dashed rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.04);
  cursor: pointer;
  transition: var(--transition-fast);
}

.note-image-dropzone:hover {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(99, 102, 241, 0.08);
}

.note-image-dropzone span {
  font-size: 24px;
  opacity: 0.7;
}

.note-image-dropzone p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Note Image Preview (Modal) ────────────────────────────────── */
.note-image-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.note-image-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.note-image-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  backdrop-filter: blur(4px);
}

.note-image-remove-btn:hover {
  background: rgba(239, 68, 68, 0.8);
  transform: scale(1.1);
}

/* ══════════════════════════════════════════════════════════════════
   NOTES RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .notes-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .note-card {
    padding: 16px;
  }

  .note-card-image {
    margin: -16px -16px 0 -16px;
  }

  .note-actions {
    opacity: 1;
  }

  .modal-card {
    padding: 24px;
    border-radius: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Hamburger Button
   ═══════════════════════════════════════════════════════════════ */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.hamburger:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-primary);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════════
   Side Menu Overlay
   ═══════════════════════════════════════════════════════════════ */
.side-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.side-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ═══════════════════════════════════════════════════════════════
   Side Menu Panel
   ═══════════════════════════════════════════════════════════════ */
.side-menu {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #0d0d1f 0%, #06060f 100%);
  border-left: 1px solid var(--border-default);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-menu.open {
  right: 0;
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-default);
}

.side-menu-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.side-menu-close {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.side-menu-close:hover {
  background: var(--error-bg);
  color: var(--error);
  border-color: var(--error);
}

/* Side Menu User Info */
.side-menu-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-default);
  background: rgba(99, 102, 241, 0.04);
}

.side-menu-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  overflow: hidden;
}

.side-menu-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.side-menu-user-info strong {
  color: var(--text-primary);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-menu-user-info small {
  color: var(--text-muted);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Side Menu Section */
.side-menu-section {
  padding: 20px 24px;
  flex: 1;
  overflow-y: auto;
}

.side-menu-section h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sessions List */
.sessions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  max-height: 40vh;
  overflow-y: auto;
}

.session-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 20px;
  font-size: 0.85rem;
}

.session-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.session-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-focus);
}

.session-current {
  border-color: var(--success) !important;
  background: rgba(16, 185, 129, 0.06) !important;
}

.session-icon {
  font-size: 1.5rem;
  line-height: 1;
  min-width: 32px;
  text-align: center;
}

.session-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  min-width: 0;
}

.session-info strong {
  color: var(--text-primary);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.session-info span {
  color: var(--text-secondary);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.session-info small {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.session-location {
  color: var(--text-secondary);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 2px;
}

.session-remove-btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.session-remove-btn:hover {
  background: var(--error-bg);
  color: var(--error);
  border-color: var(--error);
}

/* Logout All Button */
.btn-logout-all {
  width: 100%;
  padding: 10px 16px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  color: var(--error);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.btn-logout-all:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--error);
}

/* Side Menu Footer */
.side-menu-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-default);
  margin-top: auto;
  flex-shrink: 0;
}

.side-menu-footer .btn-logout {
  width: 100%;
  justify-content: center;
}

/* Side Menu Nav Items */
.side-menu-nav {
  padding: 8px 16px;
  border-bottom: 1px solid var(--border-default);
}

.menu-nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-nav-item:hover {
  background: var(--bg-card);
  border-color: var(--border-default);
  color: var(--text-primary);
}

.menu-nav-item span {
  font-size: 1.1rem;
}

/* Section Header with Back Button */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-back-notes {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-back-notes:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--accent-primary);
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: border-color 0.2s ease;
}

.search-bar:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-icon {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.5;
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-clear {
  width: 24px;
  height: 24px;
  background: var(--bg-input);
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.search-clear:hover {
  background: var(--error-bg);
  color: var(--error);
}

/* Search highlight */
.note-card mark {
  background: rgba(250, 204, 21, 0.3);
  color: #fbbf24;
  padding: 1px 2px;
  border-radius: 2px;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Avatar wrapper in menu for overlay positioning */
.side-menu-avatar-wrap {
  position: relative;
  width: 48px;
  min-width: 48px;
  height: 48px;
}

.side-menu-avatar-wrap .side-menu-avatar {
  width: 100%;
  height: 100%;
}

.avatar-overlay-mini {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  cursor: pointer;
  border: 2px solid #0d0d1f;
  transition: transform 0.2s ease;
  z-index: 1;
}

.avatar-overlay-mini:hover {
  transform: scale(1.15);
}

/* Menu Chevron */
.menu-chevron {
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform 0.2s ease;
  margin-left: auto;
}

/* Side Menu Profile Section */
.side-menu-profile {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-default);
  animation: slideFadeIn 0.25s ease;
}

.menu-profile-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.menu-profile-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mpf-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.mpf-value {
  font-size: 0.85rem;
  color: var(--text-primary);
  word-break: break-word;
}

.btn-edit-profile {
  width: 100%;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
}

.btn-edit-profile:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--accent-primary);
}

/* Menu Edit Form */
.side-menu-profile .edit-form {
  display: none;
}

.menu-edit-group {
  margin-bottom: 12px;
}

.menu-edit-group label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-weight: 500;
}

.menu-edit-group .form-input {
  font-size: 0.85rem;
  padding: 8px 12px;
}

.menu-edit-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.btn-sm {
  padding: 6px 16px !important;
  font-size: 0.8rem !important;
  min-height: unset !important;
}

/* Remove photo btn in menu context */
.side-menu-profile .remove-photo-btn {
  width: 100%;
  padding: 6px 14px;
  background: var(--error-bg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  color: var(--error);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.side-menu-profile .remove-photo-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--error);
}

/* ═══════════════════════════════════════════════════════════════
   Complete Profile Banner
   ═══════════════════════════════════════════════════════════════ */
.complete-profile-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  animation: slideFadeIn 0.4s ease;
}

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

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

.banner-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.banner-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.banner-content strong {
  color: var(--text-primary);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 2px;
}

.banner-content p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

.btn-banner-action {
  padding: 8px 20px;
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.btn-banner-action:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

/* Responsive adjustments for banner */
@media (max-width: 600px) {
  .complete-profile-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .btn-banner-action {
    width: 100%;
    text-align: center;
  }
}