/* Sunrise mood rating selector styles.
   Companion to MoodRatingSunriseSelector.razor.
   Warm sunrise palette for the segmented mood rating control. */

.sunrise-dimension-card {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(224, 141, 111, 0.15);
    box-shadow: 0 2px 12px rgba(92, 58, 46, 0.04);
    margin-bottom: 16px;
}

.sunrise-dimension-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.sunrise-dimension-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sunrise-dimension-icon {
    font-size: 22px;
    line-height: 1;
}

.sunrise-dimension-label {
    font-size: 17px;
    font-weight: 600;
    color: #2D3748;
}

.sunrise-current-value {
    font-family: 'Fraunces', 'Lora', serif;
    font-size: 26px;
    font-weight: 700;
    color: #E08D6F;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sunrise-dimension-desc {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 16px;
}

.sunrise-segmented-control {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
    padding: 8px;
    background: linear-gradient(90deg, #8B6F88 0%, #C28898 25%, #E5B5A0 50%, #F2CFA0 75%, #FBE5A8 100%);
    border-radius: 12px;
}

.sunrise-segment {
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 8px 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.18s ease;
}

.sunrise-segment:hover {
    background: rgba(255, 255, 255, 0.18);
}

.sunrise-segment.selected {
    background: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.sunrise-segment-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sunrise-segment-number {
    font-size: 11px;
    font-weight: 600;
    color: rgba(61, 36, 25, 0.65);
}

.sunrise-segment.selected .sunrise-segment-number {
    color: #3D2419;
    font-weight: 700;
}

.sunrise-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding: 0 4px;
}

.sunrise-meta-label {
    font-size: 14px;
    font-weight: 600;
    color: #3D2419;
    font-family: 'Fraunces', serif;
}

.sunrise-meta-hint {
    font-size: 11px;
    color: #A87A65;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .sunrise-segmented-control {
        gap: 2px;
        padding: 6px;
    }
    .sunrise-segment {
        padding: 6px 2px;
    }
    .sunrise-segment-icon {
        width: 28px;
        height: 28px;
    }
}
