/* ============================================================
   myteeb.com — Main Stylesheet
   Blue & White theme — clean, modern, Badoo-inspired
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --mt-blue:        #2563eb;
  --mt-blue-dark:   #1d4ed8;
  --mt-blue-deeper: #1e40af;
  --mt-blue-light:  #60a5fa;
  --mt-blue-pale:   #eff4ff;
  --mt-blue-border: #bfdbfe;
  --mt-white:       #ffffff;
  --mt-bg:          #f4f7ff;
  --mt-surface:     #ffffff;
  --mt-text:        #1a2540;
  --mt-text-muted:  #6b7280;
  --mt-text-light:  #9ca3af;
  --mt-border:      #e5e9f5;
  --mt-success:     #22c55e;
  --mt-danger:      #ef4444;
  --mt-warning:     #f59e0b;
  --mt-radius:      14px;
  --mt-radius-sm:   8px;
  --mt-radius-lg:   20px;
  --mt-shadow:      0 2px 16px rgba(37,99,235,0.08);
  --mt-shadow-md:   0 4px 24px rgba(37,99,235,0.13);
  --mt-shadow-lg:   0 8px 40px rgba(37,99,235,0.18);
  --mt-transition:  0.2s ease;
  --navbar-h:       68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--mt-bg);
  color: var(--mt-text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--mt-blue); text-decoration: none; }
a:hover { color: var(--mt-blue-dark); }

img { max-width: 100%; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f4ff; }
::-webkit-scrollbar-thumb { background: var(--mt-blue-border); border-radius: 3px; }

/* ── Navbar ────────────────────────────────────────────────── */
.mt-navbar {
  background: var(--mt-white);
  border-bottom: 1px solid var(--mt-border);
  height: var(--navbar-h);
  padding: 0;
  box-shadow: 0 1px 12px rgba(37,99,235,0.06);
  z-index: 1030;
}

.mt-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo-my   { color: var(--mt-text); }
.logo-teeb { color: var(--mt-blue); }
.logo-dot  { font-size: 1.2rem; margin-left: 2px; }

.mt-nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--mt-text-muted) !important;
  border-radius: var(--mt-radius-sm);
  padding: 8px 14px !important;
  transition: var(--mt-transition);
  display: flex;
  align-items: center;
}
.mt-nav-link:hover,
.mt-nav-link.active {
  color: var(--mt-blue) !important;
  background: var(--mt-blue-pale);
}
.mt-nav-link.active { font-weight: 700; }

.mt-avatar-btn {
  background: var(--mt-blue-pale);
  border: 2px solid var(--mt-blue-border);
  border-radius: 50px;
  padding: 4px 12px 4px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--mt-transition);
}
.mt-avatar-btn:hover { border-color: var(--mt-blue); background: var(--mt-blue-pale); }

.mt-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mt-blue);
}

.mt-dropdown {
  border: 1.5px solid var(--mt-border);
  border-radius: var(--mt-radius);
  min-width: 220px;
  padding: 8px;
}
.mt-dropdown .dropdown-item {
  border-radius: var(--mt-radius-sm);
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--mt-transition);
}
.mt-dropdown .dropdown-item:hover { background: var(--mt-blue-pale); color: var(--mt-blue); }

.nav-icon-btn {
  color: var(--mt-text-muted);
  font-size: 1.3rem;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--mt-transition);
}
.nav-icon-btn:hover { background: var(--mt-blue-pale); color: var(--mt-blue); }

.badge-dot {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--mt-danger);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 10px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary-mt {
  background: var(--mt-blue);
  color: var(--mt-white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  transition: var(--mt-transition);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-primary-mt:hover {
  background: var(--mt-blue-dark);
  color: var(--mt-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

.btn-ghost-blue {
  background: transparent;
  color: var(--mt-blue);
  border: 2px solid var(--mt-blue-border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 22px;
  transition: var(--mt-transition);
}
.btn-ghost-blue:hover {
  background: var(--mt-blue-pale);
  border-color: var(--mt-blue);
  color: var(--mt-blue);
}

.btn-like   { background: var(--mt-blue);    color: #fff; border: none; border-radius: 50%; width:52px; height:52px; display:flex; align-items:center; justify-content:center; font-size:22px; transition: var(--mt-transition); box-shadow: var(--mt-shadow); }
.btn-pass   { background: var(--mt-white);   color: var(--mt-text-muted); border: 2px solid var(--mt-border); border-radius: 50%; width:52px; height:52px; display:flex; align-items:center; justify-content:center; font-size:22px; transition: var(--mt-transition); }
.btn-super  { background: var(--mt-warning); color: #fff; border: none; border-radius: 50%; width:44px; height:44px; display:flex; align-items:center; justify-content:center; font-size:18px; transition: var(--mt-transition); }

.btn-like:hover  { background: var(--mt-blue-dark); transform: scale(1.1); }
.btn-pass:hover  { border-color: var(--mt-danger); color: var(--mt-danger); transform: scale(1.1); }
.btn-super:hover { background: #d97706; transform: scale(1.1); }

/* ── Cards ─────────────────────────────────────────────────── */
.mt-card {
  background: var(--mt-surface);
  border: 1.5px solid var(--mt-border);
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow);
  transition: var(--mt-transition);
}
.mt-card:hover { box-shadow: var(--mt-shadow-md); }

/* ── Profile Card (grid) ───────────────────────────────────── */
.profile-card {
  background: var(--mt-surface);
  border: 1.5px solid var(--mt-border);
  border-radius: var(--mt-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--mt-transition);
  position: relative;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mt-shadow-md);
  border-color: var(--mt-blue-border);
}

.profile-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.profile-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(10,15,40,0.85) 0%, transparent 100%);
  padding: 60px 14px 14px;
  color: #fff;
}
.profile-card-name { font-size: 16px; font-weight: 700; }
.profile-card-meta { font-size: 12px; opacity: 0.8; }
.profile-card-online {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--mt-success);
  color: #fff;
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
}
.profile-card-like {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  border: none;
  box-shadow: var(--mt-shadow);
  transition: var(--mt-transition);
}
.profile-card-like:hover { transform: scale(1.15); background: var(--mt-blue); }
.profile-card-like.liked { background: var(--mt-blue); }

/* ── Swipe Card (discover) ─────────────────────────────────── */
.swipe-card {
  border-radius: var(--mt-radius-lg);
  overflow: hidden;
  box-shadow: var(--mt-shadow-lg);
  border: 1.5px solid var(--mt-border);
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  user-select: none;
}
.swipe-card-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.swipe-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(10,15,40,0.9) 0%, rgba(10,15,40,0.3) 60%, transparent 100%);
  padding: 80px 24px 24px;
  color: #fff;
}
.swipe-name { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.swipe-meta { font-size: 14px; opacity: 0.85; margin-bottom: 8px; }
.swipe-bio  { font-size: 13px; opacity: 0.7; }

.swipe-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.swipe-indicator {
  position: absolute;
  top: 30px;
  font-size: 72px;
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}
.swipe-indicator.like  { left: 20px;  color: #22c55e; transform: rotate(-15deg); }
.swipe-indicator.nope  { right: 20px; color: #ef4444; transform: rotate(15deg); }

/* Interest tags */
.interest-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

/* ── Chat ──────────────────────────────────────────────────── */
.chat-sidebar {
  height: calc(100vh - var(--navbar-h) - 40px);
  overflow-y: auto;
  border-right: 1.5px solid var(--mt-border);
}
.chat-window {
  height: calc(100vh - var(--navbar-h) - 40px);
  display: flex;
  flex-direction: column;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-input-area {
  padding: 14px 20px;
  border-top: 1.5px solid var(--mt-border);
  background: var(--mt-surface);
}

.chat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: var(--mt-radius-sm);
  transition: var(--mt-transition);
  border-bottom: 1px solid var(--mt-border);
}
.chat-item:hover { background: var(--mt-blue-pale); }
.chat-item.active { background: var(--mt-blue-pale); border-right: 3px solid var(--mt-blue); }
.chat-item-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.chat-item-name   { font-weight: 700; font-size: 14px; color: var(--mt-text); }
.chat-item-preview { font-size: 13px; color: var(--mt-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.chat-item-time { font-size: 11px; color: var(--mt-text-light); flex-shrink: 0; }

.message-bubble {
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 44px;
}
.message-bubble.sent     { background: var(--mt-blue); color: #fff; border-bottom-right-radius: 4px; }
.message-bubble.received { background: var(--mt-surface); border: 1.5px solid var(--mt-border); color: var(--mt-text); border-bottom-left-radius: 4px; }
.message-time { font-size: 10px; opacity: 0.6; margin-top: 4px; text-align: right; }

/* ── Hero (Landing) ────────────────────────────────────────── */
.mt-hero {
  background: linear-gradient(135deg, var(--mt-blue) 0%, var(--mt-blue-deeper) 100%);
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.mt-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.mt-hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 30%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.mt-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.15; }
.mt-hero p  { font-size: 1.1rem; color: rgba(255,255,255,0.85); }

/* ── Features section ──────────────────────────────────────── */
.feature-icon-box {
  width: 64px; height: 64px;
  background: var(--mt-blue-pale);
  border-radius: var(--mt-radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  transition: var(--mt-transition);
}
.feature-icon-box:hover { background: var(--mt-blue); }

/* ── Stats strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--mt-blue);
  color: #fff;
  padding: 40px 0;
}
.stat-num { font-size: 2.5rem; font-weight: 800; }
.stat-lbl { font-size: 14px; opacity: 0.8; }

/* ── Auth pages ────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--mt-blue) 0%, var(--mt-blue-deeper) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-card {
  background: var(--mt-white);
  border-radius: var(--mt-radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--mt-shadow-lg);
}
.auth-logo { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-subtitle { color: var(--mt-text-muted); text-align: center; margin-bottom: 28px; font-size: 14px; }

/* ── Form controls ─────────────────────────────────────────── */
.mt-input {
  border: 1.5px solid var(--mt-border);
  border-radius: var(--mt-radius-sm);
  padding: 11px 16px;
  font-size: 14px;
  width: 100%;
  transition: var(--mt-transition);
  background: #fafbff;
  color: var(--mt-text);
}
.mt-input:focus {
  outline: none;
  border-color: var(--mt-blue);
  background: var(--mt-white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.mt-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-text);
  margin-bottom: 6px;
  display: block;
}

/* ── Online indicator ──────────────────────────────────────── */
.online-dot {
  width: 10px; height: 10px;
  background: var(--mt-success);
  border-radius: 50%;
  display: inline-block;
  border: 2px solid var(--mt-white);
}
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}

/* ── Verified badge ────────────────────────────────────────── */
.verified-badge { color: var(--mt-blue); font-size: 0.85em; }

/* ── Profile page ──────────────────────────────────────────── */
.profile-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--mt-radius-lg);
}
.profile-avatar-ring {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--mt-white);
  box-shadow: 0 0 0 3px var(--mt-blue);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.stat-badge {
  background: var(--mt-blue-pale);
  border: 1.5px solid var(--mt-blue-border);
  border-radius: var(--mt-radius-sm);
  padding: 12px 20px;
  text-align: center;
}
.stat-badge-num { font-size: 1.4rem; font-weight: 800; color: var(--mt-blue); }
.stat-badge-lbl { font-size: 12px; color: var(--mt-text-muted); }

/* ── Notification items ────────────────────────────────────── */
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--mt-border);
  transition: var(--mt-transition);
}
.notif-item:hover { background: var(--mt-blue-pale); }
.notif-item.unread { background: #f0f7ff; }
.notif-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.notif-icon.match { background: var(--mt-blue-pale); }
.notif-icon.like  { background: #fce7f3; }
.notif-icon.view  { background: #dcfce7; }
.notif-icon.msg            { background: #ede9fe; }
.notif-icon.album_request  { background: #fef3c7; }
.notif-icon.album_approved { background: #dcfce7; }

/* ── Matches grid ──────────────────────────────────────────── */
.match-card {
  border-radius: var(--mt-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--mt-transition);
}
.match-card:hover { transform: scale(1.02); box-shadow: var(--mt-shadow-md); }
.match-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.match-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(10,15,40,0.85), transparent);
  padding: 40px 12px 12px;
  color: #fff;
}
.match-card-name { font-size: 15px; font-weight: 700; }
.new-match-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--mt-blue); color: #fff;
  border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 700;
}

/* ── Section headings ──────────────────────────────────────── */
.section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--mt-text);
  margin-bottom: 6px;
}
.section-subtitle { color: var(--mt-text-muted); font-size: 14px; margin-bottom: 24px; }

/* ── Filter chips ──────────────────────────────────────────── */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid var(--mt-blue-border);
  background: var(--mt-white);
  color: var(--mt-blue);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--mt-transition);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--mt-blue);
  color: var(--mt-white);
  border-color: var(--mt-blue);
}

/* ── Alert overrides ───────────────────────────────────────── */
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.alert-error, .alert-danger { background: #fef2f2; border-color: #fecaca; color: #dc2626; }
.alert-info    { background: var(--mt-blue-pale); border-color: var(--mt-blue-border); color: var(--mt-blue-dark); }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }

/* ── Footer ─────────────────────────────────────────────────── */
.mt-footer {
  background: var(--mt-text);
  color: #d1d5db;
  padding-top: 60px;
}
.mt-logo-footer { font-size: 1.6rem; font-weight: 800; }
.mt-logo-footer .logo-my   { color: #fff; }
.mt-logo-footer .logo-teeb { color: var(--mt-blue-light); }
.footer-heading { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #9ca3af; font-size: 13px; transition: var(--mt-transition); }
.footer-links a:hover { color: var(--mt-blue-light); }
.footer-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #9ca3af; font-size: 16px;
  transition: var(--mt-transition);
}
.footer-social:hover { background: var(--mt-blue); color: #fff; }
.border-light-blue { border-color: rgba(255,255,255,0.08) !important; }

/* ── Skeleton loading ──────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #e8edf8 25%, #f0f4ff 50%, #e8edf8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: var(--mt-radius-sm);
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .mt-hero { min-height: auto; padding: 60px 0 40px; }
  .swipe-card-img { height: 360px; }
  .auth-card { padding: 28px 20px; }
  .chat-sidebar { height: auto; border-right: none; border-bottom: 1.5px solid var(--mt-border); }
  .chat-window { height: 60vh; }
}

@media (max-width: 480px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Custom Country Picker ──────────────────────────────────── */
.mt-cpicker {
  position: relative;
}
.mt-cpicker-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--mt-border);
  border-radius: var(--mt-radius-sm);
  padding: 0 36px 0 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--mt-text);
  background: #fafbff;
  outline: none;
  cursor: text;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.mt-cpicker-input::placeholder { color: var(--mt-text-light); }
.mt-cpicker-input:focus {
  border-color: var(--mt-blue);
  background: var(--mt-white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.mt-cpicker-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--mt-text-muted);
  font-size: 11px;
  transition: transform 0.2s;
  line-height: 1;
}
.mt-cpicker.open .mt-cpicker-arrow { transform: translateY(-50%) rotate(180deg); }
.mt-cpicker-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--mt-blue-border);
  border-radius: var(--mt-radius-sm);
  box-shadow: var(--mt-shadow-md);
  z-index: 9999;
  display: none;
  max-height: 210px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}
.mt-cpicker-dropdown::-webkit-scrollbar { width: 4px; }
.mt-cpicker-dropdown::-webkit-scrollbar-thumb { background: var(--mt-blue-border); border-radius: 2px; }
.mt-cpicker.open .mt-cpicker-dropdown { display: block; }
.mt-cpicker-option {
  padding: 9px 14px;
  font-size: 14px;
  cursor: pointer;
  color: var(--mt-text);
  transition: background 0.1s;
}
.mt-cpicker-option:hover { background: var(--mt-blue-pale); color: var(--mt-blue); }
.mt-cpicker-option.highlighted { background: var(--mt-blue-pale); color: var(--mt-blue); }
.mt-cpicker-option.selected { font-weight: 600; color: var(--mt-blue); }
.mt-cpicker-empty {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--mt-text-muted);
  text-align: center;
}

/* ── Utility ────────────────────────────────────────────────── */
.text-blue { color: var(--mt-blue) !important; }
.bg-blue-pale { background: var(--mt-blue-pale) !important; }
.border-blue { border-color: var(--mt-blue-border) !important; }
.rounded-mt { border-radius: var(--mt-radius) !important; }
.shadow-mt { box-shadow: var(--mt-shadow) !important; }
