/* === Planner Header Styles === */
.planner-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    border-radius: 0; /* Make corners square */
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.15);
}

.date-section {
    text-align: left;
}

.main-date {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.day-week {
    font-size: 1.1em;
    opacity: 0.9;
}

.weather-mood {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.weather-info {
    font-size: 1.2em;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.mood-tracker {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.mood-scale {
    display: flex;
    gap: 0.5rem;
}

.mood-scale span {
    font-size: 1.5em;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.mood-scale span:hover,
.mood-scale span.active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

.quote-section {
    text-align: right;
    font-style: italic;
}

.quote-section > div:first-child {
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quote-section > div:last-child {
    font-size: 0.95em;
    opacity: 0.9;
}