.toggle-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:25px;
}

.toggle-btn{
  border:none;
  padding:14px;
  border-radius:14px;
  background:#E6F0EE;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
  color:#365951;
}

.toggle-btn:hover{
  background:#55a630;
  color:#fff;
}

.toggle-btn.active{
  background:#007f5f;
  color:#fff;
}

.field{
  margin-bottom:18px;
}

.result-box{
  background:#F2F7F6;
  border-radius:20px;
  padding:25px;
  margin-bottom:22px;
}

.result-value{
  font-size:26px;
  font-weight:700;
  color:#192c27;
  word-break:break-word;
}

.small{
  margin-top:10px;
  font-size:16px;
  color:#365951;
}

.calendar{
  background:#F2F7F6;
  border-radius:20px;
  padding:20px;
  margin-top:22px;
}

.calendar-header{
  text-align:center;
  font-size:18px;
  font-weight:500;
  color:#007f5f;
  margin-bottom:15px;
}

.calendar-days,
.calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
}

.calendar-days div{
  text-align:center;
  font-weight:500;
  color:#365951;
}

.calendar-grid div{
  background:#ffffff;
  height:45px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.active-day{
  background:#007f5f !important;
  color:#fff;
}

.today{
  border:2px solid #55a630;
}

/* EXTRA CARDS */

.extra-card{
  background:#F2F7F6;
  border-radius:20px;
  padding:22px;
  margin-top:22px;
}

.section-title{
  font-weight:500;
  color:#007f5f;
  margin-bottom:18px;
}

/* TIMELINE */

.timeline-dates{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
  font-weight:500;
  color:#365951;
}

.timeline-bar{
  width:100%;
  height:18px;
  background:#E6F0EE;
  border-radius:50px;
  overflow:hidden;
}

.timeline-progress{
  height:100%;
  width:50%;
  background:linear-gradient(
    90deg,
    #007f5f,
    #55a630
  );
  border-radius:50px;
  transition:1s;
}

/* AI */

#aiSuggestions{
  line-height:1.8;
  color:#365951;
}

/* MOON */

.moon-wrapper{
  display:flex;
  align-items:center;
  gap:18px;
}

.moon-icon{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.moon-text{
  font-size:18px;
  font-weight:500;
}

/* FISCAL */

.fiscal-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.fiscal-box{
  background:#ffffff;
  padding:18px;
  border-radius:16px;
}

.fiscal-label{
  color:#365951;
  margin-bottom:8px;
}

.fiscal-value{
  font-weight:500;
  color:#192c27;
}

