/**
 * Voice Alerts - Frontend Styles
 *
 * @package Voice_Alerts
 */

/* Alert Banner */
.voice-alerts-banner {
    background-color: #dc2626;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
}

.voice-alerts-banner a {
    color: #ffffff;
    text-decoration: underline;
}

.voice-alerts-banner a:hover {
    text-decoration: none;
}

/* Full width alignment */
.voice-alerts-banner.alignfull {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .voice-alerts-banner {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .voice-alerts-banner {
        padding: 6px 10px;
        font-size: 12px;
    }
}
