/* Footer greetings and quotes */
.dashboard-footer {
  width: 100%;
  max-width: 700px;
  margin: 3.5rem auto 0 auto;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(236, 254, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(99,102,241,0.10);
  animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.greeting-message {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e7490;
  margin-bottom: 1.1rem;
  text-align: center;
  letter-spacing: 0.5px;
}
.motivational-quotes {
  font-size: 1.08rem;
  color: #6366f1;
  font-weight: 500;
  text-align: center;
  min-height: 32px;
  margin-top: 0.2rem;
  letter-spacing: 0.2px;
  transition: color 0.3s;
}
.super-big {
  font-size: 2.9rem !important;
  font-weight: 900 !important;
  letter-spacing: 2px;
}

.dashboard-action-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.2rem;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.8rem;
}

.dashboard-btn-col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.dashboard-input-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  min-height: 180px;
  animation: fadeInScale 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.dashboard-btn-col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}

.dashboard-input-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  min-height: 180px;
}
.extra-bold {
  font-weight: 900 !important;
  letter-spacing: 1.5px;
}

.dashboard-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.2rem;
}

.dashboard-btn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 1.2rem 2.2rem;
  justify-items: center;
  align-items: stretch;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 1.5rem auto;
}

.nav-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.dashboard-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.center-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.5rem;
  background: #f0fdfa;
  border-radius: 12px;
  padding: 1.2rem 2rem 1.2rem 2rem;
  box-shadow: 0 2px 8px 0 rgba(20,184,166,0.10);
  margin-bottom: 2rem;
  justify-content: center;
}

.nav-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}

.nav-btn {
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #06b6d4 0%, #6366f1 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.5rem;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(99,102,241,0.18), 0 1.5px 4px 0 rgba(6,182,212,0.13);
  filter: drop-shadow(0 0 8px #a5f3fc);
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, filter 0.2s;
}
.nav-btn.active, .nav-btn:focus {
  background: linear-gradient(90deg, #6366f1 0%, #06b6d4 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px 0 rgba(99,102,241,0.22);
  filter: drop-shadow(0 0 12px #6366f1);
}
.nav-btn:hover {
  filter: drop-shadow(0 0 16px #6366f1);
  background: linear-gradient(90deg, #6366f1 0%, #06b6d4 100%);
}
.nav-btn-purpose {
  font-size: 0.85rem;
  color: #6366f1;
  margin-top: 0.3rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 4px #e0e7ff;
}

.dashboard-title {
  justify-content: center;
}

.dashboard-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center and style input box */
#dilemma-input {
  display: block;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 2px 12px 0 rgba(99,102,241,0.13);
  border-radius: 10px;
  border: 1.5px solid #a5f3fc;
  background: #f8fafc;
  font-size: 1.1rem;
  width: 100%;
  max-width: 420px;
  padding: 1.1rem 1.2rem;
  outline: none;
  transition: box-shadow 0.2s, border 0.2s;
}
#dilemma-input:focus {
  box-shadow: 0 4px 20px 0 #6366f1;
  border: 1.5px solid #6366f1;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #f0fdfa 0%, #e0e7ff 100%);
}

#dashboard-content {
  background: #fff;
  background: transparent; /* Removed to apply gradient in dashboard-bg */
  box-shadow: 0 4px 24px 0 rgba(20,184,166,0.08), 0 1.5px 4px 0 rgba(99,102,241,0.08);
  padding: 2rem;
  margin-top: 1rem;
  background: transparent; /* Removed to apply glassmorphism effect */
  border-radius: 22px; /* Updated to match new design */
  box-shadow: 0 8px 32px 0 rgba(20,184,166,0.10), 0 2px 8px 0 rgba(99,102,241,0.10);
  padding: 2.5rem 2rem;
  margin-top: 1rem;
  min-height: 340px;
  backdrop-filter: blur(8px) saturate(1.2);
  border: 1.5px solid rgba(6,182,212,0.10);
  transition: box-shadow 0.2s, border 0.2s;
  gap: 0.5rem;
  background: #f0fdfa;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 8px 0 rgba(20,184,166,0.10);
  margin-bottom: 2rem;
}

.nav-btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  background: #06b6d4;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  margin: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px 0 rgba(6,182,212,0.10);
}
.nav-btn.active, .nav-btn:focus {
  background: #6366f1 !important;
  color: #fff !important;
  box-shadow: 0 2px 8px 0 rgba(99,102,241,0.15);
}
.card {
  background: #f0fdfa;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(20,184,166,0.10);
  padding: 1.2rem 1rem;
.dashboard-bg {
  min-height: 100vh;
  background: linear-gradient(120deg, #f0fdfa 0%, #e0e7ff 100%);
}
.dashboard-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.dashboard-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0e7490;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(20,184,166,0.10);
}
.dashboard-icon {
  font-size: 2.5rem;
  margin-right: 0.7rem;
  filter: drop-shadow(0 2px 6px #a5f3fc);
}
.dashboard-accent {
  width: 80px;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, #06b6d4 0%, #6366f1 100%);
  margin-bottom: 0.5rem;
}
.dashboard-card {
  background: rgba(255,255,255,0.75);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(20,184,166,0.10), 0 2px 8px 0 rgba(99,102,241,0.10);
  padding: 2.5rem 2rem;
  margin-top: 1rem;
  min-height: 340px;
  backdrop-filter: blur(8px) saturate(1.2);
  border: 1.5px solid rgba(6,182,212,0.10);
  transition: box-shadow 0.2s, border 0.2s;
}
.dashboard-card:hover {
  box-shadow: 0 12px 40px 0 rgba(99,102,241,0.13), 0 4px 16px 0 rgba(20,184,166,0.13);
  border: 1.5px solid #6366f1;
}
  margin-bottom: 1.2rem;
}
.lavish-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #14b8a6;
  margin-bottom: 0.5rem;
}
.lavish-section {
  margin-bottom: 1.5rem;
}
.lavish-icon {
  font-size: 2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.lavish-visual {
  display: block;
  margin: 1rem auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(99,102,241,0.10);
  max-width: 350px;
}
.lavish-error {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin: 1rem 0;
  font-weight: 500;
  box-shadow: 0 1px 4px 0 rgba(239,68,68,0.10);
}
.lavish-success {
  background: #d1fae5;
  color: #065f46;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin: 1rem 0;
  font-weight: 500;
  box-shadow: 0 1px 4px 0 rgba(16,185,129,0.10);
}
.lavish-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}
.lavish-spinner {
  border: 4px solid #e0e7ff;
  border-top: 4px solid #6366f1;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
