.main-content.monthly-mood-surface {
  background-image: var(--monthly-watermark);
  background-repeat: repeat;
  background-size: 240px 240px;
  background-position: center;
}

.monthly-mood-banner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(31, 42, 55, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  margin-bottom: 16px;
  position: relative;
}

.monthly-mood-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.monthly-mood-message {
  margin: 0;
  font-size: 13px;
  color: #2b3543;
  font-weight: 500;
}

.monthly-mood-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.monthly-mood-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  white-space: nowrap;
}

.monthly-mood-options {
  display: flex;
  align-items: center;
  gap: 6px;
}

.monthly-mood-emoji {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  position: relative;
}

.monthly-mood-dismiss {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  z-index: 2;
}

.monthly-mood-dismiss:hover {
  color: #2b3543;
}


.monthly-mood-emoji:hover {
  transform: translateY(-1px);
}

.monthly-mood-emoji:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(31, 42, 55, 0.9);
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}

.monthly-mood-emoji.selected {
  border-color: rgba(43, 53, 67, 0.8);
  box-shadow: 0 0 0 2px rgba(43, 53, 67, 0.18);
  background: #fff;
}

.monthly-mood-emoji:focus-visible {
  outline: 2px solid #1f2a37;
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .monthly-mood-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .monthly-mood-content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .monthly-mood-message {
    max-width: 100%;
  }

  .monthly-mood-bar {
    width: 100%;
    gap: 8px;
  }

  .monthly-mood-options {
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .monthly-mood-options::-webkit-scrollbar {
    display: none;
  }

  .monthly-mood-emoji {
    width: 32px;
    height: 32px;
    font-size: 16px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}
