
#wv-alerts-container {
    font-family: Arial, sans-serif;
    padding: 10px;
}
.wv-alert {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    border-left: 5px solid #c00;
}
.alert-toggle {
    background: #c00;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1em;
    cursor: pointer;
}
.alert-content {
    background: #f9f9f9;
    display: none;
    padding: 10px;
}
.alert-content p {
    margin: 6px 0;
    font-size: 0.95em;
}
@media screen and (max-width: 600px) {
    .alert-toggle, .alert-content {
        font-size: 0.9em;
        padding: 8px;
    }
}
