/* lib/styles/components/update_banner.css */

.update-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: rgba(241, 178, 70, 0.1);
    /* Support Gold with 10% opacity */
    border: 1px solid rgba(241, 178, 70, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
    /* Adding a subtle transition to prevent snapping if dynamic state updates occur */
    transition: opacity var(--transition-normal);
}

.update-banner__icon {
    flex-shrink: 0;
    /* Force the icon to use the Support Gold token */
    color: var(--color-support-gold, #F1B246);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.update-banner__text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-neutral-navy, #102030);
    margin: 0;
    font-weight: 500;
}