/* Enhanced styling for color analysis results */

.detailed-analysis {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.detailed-analysis:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.analysis-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.analysis-item {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    border-radius: 6px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.2s ease;
}

.analysis-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.analysis-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.analysis-value {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.swatch-label {
    font-size: 0.85rem;
    color: #555;
    text-align: center;
}

.season-header {
    color: #444;
    font-family: 'Georgia', serif;
    position: relative;
    display: inline-block;
}

.season-header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, currentColor, transparent);
}

/* Season-specific accent colors */
.autumn-accent { color: #C86B27; }
.winter-accent { color: #264B82; }
.spring-accent { color: #7AB800; }
.summer-accent { color: #C76B98; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.analysis-appear {
    animation: fadeIn 0.8s ease forwards;
}