/**
 * Tool-Specific Stylesheet for Daily Energy Hue.
 */

/* --- Tool Theme Colors --- */
[data-tool-id="204507"] .auras-tool-notice {
    background-color: #fff8e1; /* Morning Sun Warmth */
    border-left-color: #ffc107; /* Morning Sun Warmth */
    color: #856404;
}
[data-tool-id="204507"] .auras-tool-button-calculate {
    background-color: #6f42c1; /* Creative Amethyst */
}
[data-tool-id="204507"] .auras-tool-button-calculate:hover {
    background-color: #5a379b; /* Creative Amethyst */
}
[data-tool-id="204507"] .auras-ai-button {
    background-color: #20c997; /* Sage Green Wisdom */
}
[data-tool-id="204507"] .auras-ai-button:hover {
    background-color: #1baa80; /* Sage Green Wisdom */
}

/* --- Radio Button Group Styling --- */
[data-tool-id="204507"] .auras-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
[data-tool-id="204507"] .auras-radio-option {
    display: flex;
    align-items: center;
}
[data-tool-id="204507"] .auras-radio-option input[type="radio"] {
    margin-right: 0.75rem;
    width: auto;
}
[data-tool-id="204507"] .auras-radio-option label {
    margin-bottom: 0;
    font-weight: normal;
}

/* --- Result Display Styling --- */
[data-tool-id="204507"] .result-core-insight {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}
[data-tool-id="204507"] .energy-palette-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem auto;
    padding: 1.5rem 0;
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}
[data-tool-id="204507"] .energy-palette-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
[data-tool-id="204507"] .energy-palette-legend {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
}
[data-tool-id="204507"] .legend-color-box {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
    border: 1px solid rgba(0,0,0,0.1);
}
[data-tool-id="204507"] .result-interpretation-section h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #3d4a59;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    [data-tool-id="204507"] .energy-palette-visual {
        flex-direction: row;
        justify-content: center;
    }
}