.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}
.icon-fill {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d2c2c8; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #817478; }

.elevation-1 {
  background-color: #ffffff;
  box-shadow: 0px 4px 20px rgba(114, 76, 95, 0.04);
}
.elevation-2 {
  background-color: #ffffff;
  box-shadow: 0px 12px 32px rgba(44, 62, 80, 0.10);
}
.btn-hover-effect:hover {
  box-shadow: inset 0 0 0 1px #6a5b5a;
}

.skeleton {
  background: linear-gradient(90deg, #eae8e6 25%, #f5f3f1 37%, #eae8e6 63%);
  background-size: 400% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: 6px;
}
@keyframes skeleton-shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

.avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #724c5f, #304254);
  flex-shrink: 0;
}

#toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  min-width: 260px;
  max-width: 360px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #30302f;
  box-shadow: 0px 12px 32px rgba(44, 62, 80, 0.18);
  animation: toast-in 0.2s ease;
}
.toast.success { background: #1e4620; }
.toast.error { background: #ba1a1a; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

dialog.admin-modal {
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0px 12px 32px rgba(44, 62, 80, 0.18);
  max-width: min(560px, 92vw);
  width: 100%;
}
dialog.admin-modal::backdrop {
  background: rgba(27, 28, 27, 0.45);
  backdrop-filter: blur(2px);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(440px, 100vw);
  background: #ffffff;
  box-shadow: -12px 0 32px rgba(44, 62, 80, 0.12);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 60;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(27, 28, 27, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 50;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
