/* Formulario de Alertas */
.wpjm-alert-subscription-wrapper {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.wpjm-alert-subscription-wrapper h3 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
}

.wpjm-alert-subscription-wrapper > p {
    color: #666;
    margin-bottom: 25px;
}

.wpjm-alert-form {
    max-width: 600px;
}

.wpjm-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wpjm-checkbox-label {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.wpjm-checkbox-label:hover {
    background: #f5f5f5;
}

.wpjm-checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
}

.wpjm-alert-messages {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

.wpjm-alert-messages.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    display: block;
}

.wpjm-alert-messages.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .wpjm-alert-subscription-wrapper {
        padding: 20px;
    }
    
    .wpjm-checkboxes {
        grid-template-columns: 1fr;
    }
}
