
.mood-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 8px;
  border-bottom: 1px dashed #F0E8F5;
  flex-shrink: 0;
}
.mood-date-picker-wrapper {
  position: relative;
}
/* Hidden native input overlayed by your cute style button */
#mood-date-filter {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  pointer-events: none; /* Let clicks pass straight into our button */
}
.mood-nav-btn {
  background: var(--white);
  border: 1px solid var(--text-soft);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.mood-nav-btn:hover {
  background: var(--mint);
  border-color: var(--mint-dark);
  color: var(--white);
}
.mood-nav-btn--disabled {
  background: #F3F3F3;
  border-color: #D8D8D8;
  color: #A8A8A8;
  cursor: not-allowed;
}
.mood-nav-btn--disabled:hover {
  background: #F3F3F3;
  color: #A8A8A8;
}
.mood-calendar-btn {
  background: var(--blush);
  border: 2px solid var(--rose);
  border-radius: 10px;
  padding: 6px 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.mood-calendar-btn:hover {
  background: var(--rose);
  border-color: var(--rose-dark);
}
.mood-filter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.mood-clear-btn {
  background: none;
  border: none;
  color: #C05070;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mood-clear-btn:hover {
  background: #FFE0E8;
}
