/* ROOT CONFIGURATION & DESIGN SYSTEM TOKENS */
:root {
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Color Palette */
  --bg-primary: #090d16;
  --bg-card: rgba(20, 27, 45, 0.45);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(13, 148, 136, 0.6);
  
  --primary: #0d9488;      /* Teal */
  --primary-glow: rgba(13, 148, 136, 0.25);
  --gold: #f59e0b;         /* Amber/Gold */
  --gold-glow: rgba(245, 158, 11, 0.25);
  --red: #ef4444;          /* Stop Red */
  --red-glow: rgba(239, 68, 68, 0.2);
  --green: #10b981;        /* Success green */
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #1f2937;
  
  /* Layout constraints */
  --header-height: 80px;
  --border-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BASE STYLES & RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent; /* Remove tap flash on iPad */
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  height: 100vh;
  width: 100vw;
  position: relative;
  line-height: 1.5;
}

/* Ambient glow backgrounds */
.ambient-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
}
.glow-1 {
  background: var(--primary);
  top: -10%;
  left: -10%;
}
.glow-2 {
  background: var(--gold);
  bottom: -10%;
  right: -10%;
}

/* UTILITY CLASSES */
.hidden {
  display: none !important;
}

.pad-20 {
  padding: 20px;
}

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

.text-center {
  text-align: center;
}

/* SCROLLBAR CUSTOMIZATION */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* GLASSMORPHIC CONTAINER STYLES */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.app-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* HEADER COMPONENT */
.app-header {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  margin: 15px 15px 0 15px;
  z-index: 10;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-dot {
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
}

.app-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  gap: 8px;
}

/* BUTTONS SYSTEM */
.btn {
  font-family: var(--font-family);
  font-weight: 600;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-align: center;
}

.btn-large {
  padding: 18px 28px;
  font-size: 1.1rem;
}

.btn-xlarge {
  padding: 22px 36px;
  font-size: 1.3rem;
  border-radius: 18px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-main);
  box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 5px var(--primary-glow);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}
.btn-secondary:active {
  background-color: rgba(255, 255, 255, 0.15);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--gold-glow);
  font-weight: 700;
}
.btn-gold:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px var(--gold-glow);
}

.btn-red {
  background-color: var(--red);
  color: var(--text-main);
  box-shadow: 0 4px 15px var(--red-glow);
}
.btn-red:active {
  transform: scale(0.96);
}

.nav-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.nav-btn:hover, .nav-btn.active {
  color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.06);
}
.logout-btn {
  color: var(--red);
}
.logout-btn:hover {
  background-color: var(--red-glow) !important;
}

/* VIEW PANELS */
.view-panel {
  display: none;
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.4s ease-out;
}
.view-panel.active {
  display: flex;
  flex-direction: column;
}

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

/* AUTHENTICATION VIEW styling */
#auth-view, #reset-password-view {
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  padding: 40px;
}

.auth-header {
  text-align: center;
  margin-bottom: 35px;
}

.logo-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  margin: 0 auto 20px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px var(--primary-glow);
}
.logo-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  animation: rotate 12s linear infinite;
}
.logo-inner-dot {
  width: 24px;
  height: 24px;
  background-color: var(--gold);
  border-radius: 50%;
}

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

.auth-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input, .form-group textarea {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 16px;
  font-size: 1.05rem;
  color: var(--text-main);
  font-family: var(--font-family);
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
}

.form-actions {
  margin-top: 10px;
}
.form-actions button {
  width: 100%;
}

.auth-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 0.95rem;
  margin-top: 5px;
}
.auth-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.auth-links .separator {
  color: rgba(255, 255, 255, 0.15);
}

.form-notice {
  background-color: rgba(13, 148, 136, 0.1);
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-main);
}

/* DASHBOARD / WORKOUT PANEL */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  max-width: 1200px;
  margin: 15px auto;
  width: 100%;
  flex: 1;
}

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

.card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.hero-card {
  justify-content: space-between;
  min-height: 380px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.badge {
  background-color: rgba(245, 158, 11, 0.12);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-actions {
  margin-top: 15px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--border-glass);
  padding-top: 25px;
  margin-top: 20px;
}

.mini-stat {
  display: flex;
  flex-direction: column;
}
.mini-stat .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.mini-stat .lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.list-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.exercise-preview-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  max-height: 400px;
}

.preview-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 12px 18px;
}

.preview-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preview-info {
  flex: 1;
}
.preview-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
}
.preview-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.preview-badge {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border-glass);
}

/* SESSION TIMED WORKOUT LAYOUT */
.session-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}

@media (max-width: 1024px) {
  .session-layout {
    grid-template-columns: 1fr;
  }
  .session-sidebar {
    display: none !important; /* Hide sidebar step list on portrait tablets to preserve space */
  }
}

.session-sidebar {
  padding: 25px;
  overflow-y: auto;
  max-height: calc(100vh - 160px);
}
.session-sidebar h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sidebar-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.sidebar-step-item.active {
  background-color: var(--primary-glow);
  border-color: var(--primary);
}
.sidebar-step-item.completed {
  opacity: 0.5;
}
.sidebar-step-num {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
}
.sidebar-step-name {
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.session-main {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: calc(100vh - 160px);
}

.session-step-header {
  text-align: center;
}
.session-step-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.2;
}

.session-target-details {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
}

.session-display-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  width: 100%;
  max-width: 900px;
  align-items: center;
}

@media (max-width: 768px) {
  .session-display-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.session-illustration {
  background-color: rgba(0,0,0,0.2);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-glass);
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.exercise-illustration {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.session-cautions {
  background-color: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 20px;
  font-size: 1.05rem;
}
.session-cautions strong {
  color: var(--red);
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

/* TIMER SECTION */
.session-timer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.circular-timer-container {
  position: relative;
  width: 220px;
  height: 220px;
}

.timer-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.timer-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 12;
}

.timer-progress {
  fill: none;
  stroke: var(--primary);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 534; /* 2 * PI * r (85) = 534.07 */
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.1s linear;
}

.timer-digital {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.timer-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.session-controls {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 600px;
}
.session-controls button {
  flex: 1;
}

.session-settings {
  margin-top: 5px;
}

/* TOGGLE SLIDER */
.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  width: 52px;
  height: 28px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 34px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border-glass);
}
.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-main);
  border-radius: 50%;
  transition: var(--transition);
}
input:checked + .slider {
  background-color: var(--primary);
}
input:checked + .slider::before {
  transform: translateX(24px);
}
.toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
}

/* POST WORKOUT SURVEY log */
.survey-card {
  width: 100%;
  max-width: 650px;
  margin: 15px auto;
  padding: 40px;
}

.survey-header {
  text-align: center;
  margin-bottom: 30px;
}
.trophy-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}
.survey-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.survey-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.range-value {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Custom styled range slider */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.1);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 10px var(--gold-glow);
  transition: var(--transition);
}
input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.2);
}

.rpe-helper-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.survey-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* LOGS HISTORY VIEW LISTS */
.logs-container {
  max-width: 1000px;
  width: 100%;
  margin: 15px auto;
  padding: 35px;
}

.logs-header {
  margin-bottom: 30px;
}
.logs-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.logs-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.log-entry {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.log-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  user-select: none;
}
.log-entry-header:active {
  background-color: rgba(255,255,255,0.02);
}

.log-entry-title {
  display: flex;
  flex-direction: column;
}
.log-entry-title h4 {
  font-size: 1.15rem;
  font-weight: 700;
}
.log-entry-title span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.log-entry-meta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.meta-chip {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
}
.meta-chip.chip-rpe {
  background-color: var(--gold-glow);
  color: var(--gold);
}

.log-arrow {
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--text-muted);
}
.log-entry.open .log-arrow {
  transform: rotate(180deg);
}

.log-entry-details {
  display: none;
  padding: 20px;
  border-top: 1px solid var(--border-glass);
  background-color: rgba(0,0,0,0.15);
  animation: slideDown 0.3s ease-out;
}
.log-entry.open .log-entry-details {
  display: block;
}

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

.log-exercises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.log-ex-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 14px;
}
.log-ex-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.log-ex-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.log-notes-box {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 16px;
  font-size: 0.95rem;
  line-height: 1.45;
}
.log-notes-box strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* STATISTICS & GRAPHS VIEW */
.stats-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 15px auto 25px auto;
}

@media (max-width: 768px) {
  .stats-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.metric-card {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.metric-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}
.metric-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.stats-charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 25px auto;
}

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

.chart-container {
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 350px;
}
.chart-container h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.canvas-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
}

.progression-table-card {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 25px;
}
.progression-table-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.table-scroll {
  overflow-x: auto;
}

.progression-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.progression-table th {
  border-bottom: 2px solid var(--border-glass);
  padding: 12px 16px;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}
.progression-table td {
  border-bottom: 1px solid var(--border-glass);
  padding: 16px;
  font-size: 1.05rem;
}
.progression-table tr:hover {
  background-color: rgba(255,255,255,0.02);
}

/* SETTINGS VIEW PANEL */
.settings-card {
  max-width: 700px;
  width: 100%;
  margin: 15px auto;
  padding: 35px;
}
.settings-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

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

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

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

.help-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.disabled-input {
  opacity: 0.5;
  cursor: not-allowed;
}

.settings-cautions {
  background-color: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-top: 35px;
  line-height: 1.5;
}
.settings-cautions h4 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* TOAST / NOTIFICATION */
.app-footer {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
}

.toast-notification {
  background: rgba(13, 148, 136, 0.9);
  backdrop-filter: blur(8px);
  color: var(--text-main);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}
