/* assets/css/adulto.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f7f0;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

h1, h2, h3 {
    color: #2c5e8d;
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
}

p, label {
    margin-bottom: 12px;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

button, a.button {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

button:hover, a.button:hover {
    background: #357abd;
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert.error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
}

.alert.success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

section {
    margin: 25px 0;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
}

.map-container {
    margin-top: 15px;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    border: none;
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    h1 {
        font-size: 1.5rem;
    }
}
/* Estilo para el toggle de visibilidad */
.visibility-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0 15px 0;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.visibility-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4CAF50;
    cursor: pointer;
}

.visibility-toggle label {
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    margin: 0;
    flex: 1;
}

.visibility-toggle:hover {
    background: #f0f0f0;
    border-color: #ccc;
}