/* Contenedor */
#anuncio-switch-container { 
    background: #fef6ff; 
    border: 1px solid #2c2a5f; 
    border-radius: 8px; 
    padding: 15px;
    max-width: 320px;
    margin: 15px 0;
    color: #2c2a5f;
}

/* Título */
#anuncio-switch-container h4 { 
    margin: 0 0 12px; 
    font-size: 20px; /* solicitado */
    color: #2c2a5f;
}

/* Layout interno */
.switch-wrapper { display: flex; align-items: center; gap: 12px; }
.switch-note { font-size: 11px; color: #2c2a5f; margin-top: 8px; }
#anuncio-status-label { color: #2c2a5f; }

/* Switch */
.switch { position: relative; display: inline-block; width: 55px; height: 30px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 24px; width: 24px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: #d9125e; }
input:checked + .slider:before { transform: translateX(24px); }

/* Modal */
.as-modal { position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; }
.as-modal-content { background-color: #fefefe; margin: auto; padding: 20px 25px; border: 1px solid #888; width: 80%; max-width: 360px; text-align: center; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,.3); }
.as-modal-content p { font-size: 1.05em; margin: 0 0 18px; color: #2c2a5f; }
.as-button { background: #d9125e; color: white; border: none; padding: 8px 18px; border-radius: 5px; cursor: pointer; font-size: 1em; }