/* LEVERHUT Admin Panel Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --admin-sidebar-bg: #110E13;
  --admin-sidebar-active: #1D1822;
  --admin-bg: #FAF6FB;
  --color-hot-pink: #F05A93;
  --color-baby-pink: #F48FB1;
  --color-light-rose: #F7D7E6;
  --color-text-black: #1E1820;
  --color-text-muted: #7A727E;
  --color-border: #EBE5ED;
  --color-glass-white: rgba(255, 255, 255, 0.7);
  --color-card-shadow: 0 8px 30px rgba(183, 153, 192, 0.08);
  
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --border-radius-lg: 20px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--admin-bg);
  color: var(--color-text-black);
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 10% 10%, rgba(244, 143, 177, 0.06) 0px, transparent 40%),
    radial-gradient(at 90% 90%, rgba(243, 233, 255, 0.08) 0px, transparent 40%);
  background-attachment: fixed;
}

/* Sidebar Styling */
.sidebar {
  width: 260px;
  background-color: var(--admin-sidebar-bg);
  color: #ECE5EF;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.sidebar-brand {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-logo-img {
  height: 28px;
  filter: invert(1);
  mix-blend-mode: screen;
  display: block;
}

.sidebar-logo-tag {
  font-size: 9px;
  background: var(--color-hot-pink);
  color: white;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sidebar-menu {
  list-style: none;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: #B1A8B6;
  transition: all 0.2s ease;
}

.sidebar-menu a:hover {
  color: #FFFFFF;
  background-color: var(--admin-sidebar-active);
  padding-left: 20px;
}

.sidebar-menu a.active {
  color: #FFFFFF;
  background-color: var(--admin-sidebar-active);
  border-left: 3px solid var(--color-hot-pink);
}

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

.sidebar-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #C07584;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  transition: all 0.2s ease;
}

.sidebar-logout:hover {
  background: rgba(192, 117, 132, 0.1);
  color: #FF8A9F;
}

/* Main Dashboard Panel */
.main-wrapper {
  margin-left: 260px; /* sidebar space */
  flex-grow: 1;
  padding: 30px 40px;
  min-height: 100vh;
}

/* Header bar */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.admin-title-area h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-black);
}

.admin-title-area p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-profile-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.profile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-light-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-hot-pink);
  font-weight: 700;
  font-size: 11px;
}

/* KPI Cards Layout */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.kpi-card {
  background: var(--color-glass-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--color-card-shadow);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: transparent;
  transition: all 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(183, 153, 192, 0.12);
}

.kpi-card:hover::before {
  background: var(--color-hot-pink);
}

.kpi-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-light-rose);
  color: var(--color-hot-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-details h4 {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kpi-details .value {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-black);
  margin-top: 4px;
}

/* Dashboard Content Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
}

.admin-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--color-card-shadow);
  padding: 28px;
  height: fit-content;
}

.admin-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-black);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Tables Styling */
.admin-table-wrapper {
  overflow-x: auto;
  margin-top: 10px;
}

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

.admin-table th {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 13.5px;
  color: var(--color-text-black);
  vertical-align: middle;
}

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

.admin-table tr:hover td {
  background: var(--admin-bg);
}

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

.status-badge.pending { background: #FFF9C4; color: #F57F17; }
.status-badge.processing { background: #E3F2FD; color: #0D47A1; }
.status-badge.shipped { background: #EDE7F6; color: #4A148C; }
.status-badge.delivered { background: #E8F5E9; color: #1B5E20; }
.status-badge.cancelled { background: #FFEBEE; color: #B71C1C; }

/* Canvas Chart */
.chart-container {
  width: 100%;
  height: 250px;
  margin-top: 12px;
  position: relative;
}

/* Buttons */
.btn-admin-primary {
  background: var(--color-hot-pink);
  color: white;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-admin-primary:hover {
  background: #E04D86;
  transform: translateY(-1px);
}

.btn-admin-outline {
  background: white;
  color: var(--color-text-black);
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-admin-outline:hover {
  border-color: var(--color-baby-pink);
  color: var(--color-hot-pink);
}

.btn-action-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius-sm);
  background: white;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}

.btn-action-icon:hover {
  border-color: var(--color-baby-pink);
  color: var(--color-hot-pink);
}

/* Add/Edit Product Modal styling — Premium Frosted Glass */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 14, 19, 0.55) 0%, rgba(60, 20, 50, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.admin-modal.active {
  display: flex;
}

.modal-content {
  background: rgba(255, 250, 254, 0.65);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: 24px;
  width: 660px;
  max-width: 96%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 0;
  box-shadow:
    0 4px 0px 0 rgba(240, 90, 147, 0.18),
    0 32px 64px -12px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 1px 0 0 rgba(255, 255, 255, 0.8) inset;
  animation: modalOpen 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow-x: hidden;
}

/* Custom scrollbar for the modal */
.modal-content::-webkit-scrollbar {
  width: 5px;
}
.modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
  background: rgba(240, 90, 147, 0.25);
  border-radius: 99px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(240, 90, 147, 0.5);
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px 20px 32px;
  background: linear-gradient(135deg, rgba(240, 90, 147, 0.07) 0%, rgba(244, 143, 177, 0.04) 100%);
  border-bottom: 1px solid rgba(240, 90, 147, 0.12);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px 24px 0 0;
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(120deg, #1E1820 30%, #F05A93 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-title::before {
  content: "✦";
  font-size: 14px;
  -webkit-text-fill-color: #F05A93;
  animation: titleSparkle 2s ease-in-out infinite alternate;
}

@keyframes titleSparkle {
  from { opacity: 0.5; transform: scale(0.9) rotate(-10deg); }
  to   { opacity: 1;   transform: scale(1.1) rotate(10deg); }
}

.modal-close {
  background: rgba(240, 90, 147, 0.08);
  border: 1px solid rgba(240, 90, 147, 0.18);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(240, 90, 147, 0.15);
  color: #F05A93;
  transform: rotate(90deg) scale(1.1);
  border-color: rgba(240, 90, 147, 0.4);
  box-shadow: 0 4px 12px rgba(240, 90, 147, 0.15);
}

/* Modal inner padding wrapper */
#product-modal-form,
.modal-content > form {
  padding: 28px 32px 32px 32px;
}

/* Form rows & groups */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--color-text-black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid rgba(235, 229, 237, 0.9);
  border-radius: 12px;
  font-size: 13.5px;
  font-family: var(--font-sans);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text-black);
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A727E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(240, 90, 147, 0.5);
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 3px rgba(240, 90, 147, 0.1),
    0 2px 12px rgba(240, 90, 147, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 114, 126, 0.55);
  font-size: 13px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.55;
}

/* Section separator bands inside modal */
.modal-content > form > div[style*="border:1px dashed"],
.modal-content > form > div[style*="border: 1px dashed"] {
  border-radius: 14px !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Image slot overrides for glass look */
#modal-images-container > div {
  border-radius: 12px !important;
  border: 1.5px solid rgba(235, 229, 237, 0.8) !important;
  background: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.2s ease !important;
}

#modal-images-container > div:hover {
  border-color: rgba(240, 90, 147, 0.4) !important;
  background: rgba(255, 245, 250, 0.65) !important;
  transform: scale(1.04);
}

/* File input */
input[type="file"] {
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px dashed rgba(240, 90, 147, 0.3);
  border-radius: 12px;
  font-size: 12.5px;
  background: rgba(255, 245, 250, 0.4);
  color: var(--color-text-muted);
  width: 100%;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

input[type="file"]:hover {
  border-color: rgba(240, 90, 147, 0.55);
  background: rgba(255, 245, 250, 0.7);
}

/* Checkbox inputs */
input[type="checkbox"] {
  accent-color: var(--color-hot-pink);
  cursor: pointer;
}

/* Modal action buttons row */
.modal-content form > div:last-child {
  padding-top: 8px;
}



/* AI Chat Screen Styling */
.admin-chat-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  background: white;
  height: 600px;
  overflow: hidden;
}

.chat-threads-sidebar {
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.chat-search-wrapper {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
}

.chat-thread-list {
  list-style: none;
  overflow-y: auto;
  flex-grow: 1;
}

.thread-item {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thread-item:hover {
  background: var(--admin-bg);
}

.thread-item.active {
  background: var(--color-light-rose);
  border-left: 4px solid var(--color-hot-pink);
}

.thread-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.thread-name {
  font-weight: 600;
  font-size: 13.5px;
}

.thread-badge {
  font-size: 9px;
  background: #FFF9C4;
  color: #F57F17;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.thread-badge.resolved {
  background: #E8F5E9;
  color: #1B5E20;
}

.thread-preview {
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thread-time {
  font-size: 10px;
  color: var(--color-text-muted);
  align-self: flex-end;
}

.chat-pane {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FAF8FB;
}

.chat-pane-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-pane-title h3 {
  font-size: 15px;
  font-weight: 600;
}

.chat-pane-title p {
  font-size: 11px;
  color: var(--color-text-muted);
}

.chat-pane-messages {
  flex-grow: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-msg-bubble {
  max-width: 70%;
  padding: 12px 16px;
  border-radius: var(--border-radius-md);
  font-size: 13px;
  line-height: 1.5;
}

.admin-msg-bubble.user {
  background: white;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid var(--color-border);
  color: var(--color-text-black);
}

.admin-msg-bubble.admin {
  background: var(--color-hot-pink);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.admin-chat-input-row {
  padding: 16px;
  background: white;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 12px;
}

.admin-chat-input-row input {
  flex-grow: 1;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-size: 13px;
}

/* Settings view Specifics */
.settings-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
  .sidebar {
    width: 70px;
  }
  
  .sidebar-logo-text, .sidebar-logo-tag, .sidebar-menu span, .sidebar-logout span {
    display: none;
  }
  
  .sidebar-brand, .sidebar-menu a, .sidebar-logout {
    justify-content: center;
    padding: 16px 0;
  }
  
  .main-wrapper {
    margin-left: 70px;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-wrapper {
    padding: 20px;
  }
  
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .settings-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-chat-layout {
    grid-template-columns: 1fr;
  }
  
  .chat-threads-sidebar {
    display: none; /* simple mobile toggling fallback */
  }
}

/* Glassmorphism Modern Notifications */
.glass-notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 10, 18, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-notification-overlay.active {
  opacity: 1;
}
.glass-notification-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 32px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  transform: scale(0.9) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--color-text-black, #1E1820);
}
.glass-notification-overlay.active .glass-notification-card {
  transform: scale(1) translateY(0);
}
.glass-notification-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(240, 90, 147, 0.12), rgba(240, 90, 147, 0.22));
  border: 1px solid rgba(240, 90, 147, 0.25);
  color: var(--color-hot-pink, #F05A93);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.glass-notification-title {
  font-family: var(--font-sans, sans-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-black, #1E1820);
  letter-spacing: -0.015em;
}
.glass-notification-message {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-muted, #7A727E);
  margin-bottom: 24px;
}
.glass-notification-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.glass-notification-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.glass-notification-btn.primary {
  background: linear-gradient(135deg, var(--color-hot-pink, #F05A93), #d83d76);
  color: white;
  box-shadow: 0 4px 15px rgba(240, 90, 147, 0.3);
}
.glass-notification-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(240, 90, 147, 0.4);
}
.glass-notification-btn.secondary {
  background: rgba(30, 24, 32, 0.08);
  color: var(--color-text-black, #1E1820);
  border: 1px solid rgba(30, 24, 32, 0.1);
}
.glass-notification-btn.secondary:hover {
  background: rgba(30, 24, 32, 0.12);
}

/* Admin Login screen styling */
.admin-login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #FDEFF5 0%, #FAF6FB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
}
.admin-login-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 32px 64px rgba(183, 153, 192, 0.15);
  border-radius: 28px;
  padding: 40px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  color: var(--color-text-black);
}

