.ev-alert {
    background: #fff7e6;
    border-bottom: 1px solid #f5d38a;
    padding: 10px 20px;
}

.ev-alert-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ev-alert-icon {
    font-size: 18px;
}

.ev-alert-text {
    flex: 1;
    font-size: 14px;
    color: #5c4a00;
}

.ev-alert-text strong {
    display: block;
    font-weight: 600;
}

.ev-alert-action {
    background: #f59e0b;
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s;
}

.ev-alert-action:hover {
    background: #d97706;
}
.ev-alert-text b {font-weight: bold;}