/* ===== PREMIUM MOOD TRACKER 2.0 ===== */

.mood-section {
  max-width: 680px;
  margin: 1px 0px 0px 0px;
  padding: 40px;
  /* background: hsla(216, 98%, 52%, 1);

background: linear-gradient(180deg, hsla(216, 98%, 52%, 1) 30%, hsla(220, 58%, 29%, 1) 50%);

background: -moz-linear-gradient(180deg, hsla(216, 98%, 52%, 1) 30%, hsla(220, 68%, 29%, 1) 100%);

background: -webkit-linear-gradient(180deg, hsla(216, 98%, 52%, 1) 30%, hsla(220, 78%, 29%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#0D6EFD", endColorstr="#103783", GradientType=1 );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.04); */
  background: linear-gradient(135deg, #0054fd, #2b7bff);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: #1f2937;
  position: relative;
  overflow: hidden;
}

/* Soft top accent glow */
.mood-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(circle, rgba(13,110,253,0.15), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.mood-section > * {
  position: relative;
  z-index: 1;
}

/* Title */
.mood-section h1 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 16px;
  color: #0d6efd;
  letter-spacing: -0.5px;
}

/* Subtitle */
.mood-section p {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Divider */
.mood-section .mood-hero {
  position: relative;
  margin: 25px 0;
  padding: 8px;
  border-radius: 18px;
  border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(to right, transparent, #085aff, transparent) border-box;
}

/* Section Title */
.mood-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

/* ===== Mood Grid ===== */
.mood-section .mood-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 24px;
  justify-items: center;
}

/* ===== Premium Mood Buttons ===== */
.mood-section .mood-buttons button {
  font-size: 1.2rem;
  width: 110px;
  height: 110px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  color: #111827;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Hover */
.mood-section .mood-buttons button:hover {
  transform: translateY(-6px) scale(1.05);
  background: #0d6efd;
  color: white;
  box-shadow:
    0 20px 40px rgba(13,110,253,0.25);
}

/* Click */
.mood-section .mood-buttons button:active {
  transform: translateY(-2px) scale(0.98);
}

/* Optional Selected State */
.mood-section .mood-buttons button.selected {
  background: #0d6efd;
  color: white;
  box-shadow:
    0 18px 40px rgba(13,110,253,0.35);
}

/* ===== Responsive ===== */
@media (max-width: 480px) {

  .mood-section {
    padding: 5px 20px 0px 20px;
    
  }

  .mood-section .mood-buttons {
    grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
    gap: 18px;
  }

  .mood-section .mood-buttons button {
    width: 85px;
    height: 85px;
    font-size: 1.25rem;
    border-radius: 18px;
  }
}
.mood-status {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  display: none;
}

.mood-status.success {
  background-color: #d1fae5;
  color: #065f46;
  display: inline-block;
}

.mood-status.info {
  background-color: #e0f2fe;
  color: #075985;
  display: inline-block;
}
/* ===== Mood Reports ===== */
.mood-report {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 20px 25px;
  background-color: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.mood-report h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  margin-bottom: 20px;
}

.mood-report canvas {
  width: 100% !important;
  max-width: 600px;
  height: 250px !important;
  margin: 0 auto 15px auto;
  display: block;
}

.insight-text {
  text-align: center;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 10px;
}

.mood-reports {
  margin-top: 40px;
  text-align: center;
}

.mood-reports h2 {
  font-size: 1.3rem;
  color: #374151;
  margin-bottom: 15px;
}

.report-insight {
  font-size: 1rem;
  color: #6b7280;
  margin-top: 10px;
}