/* Estilos para el formulario de login de oyentes */
.login-oyentes-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.login-oyentes-form-wrapper {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.login-oyentes-form-wrapper h2 {
    color: #2c3e50;
    margin: 0 0 15px 0;
    text-align: center;
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
}

.login-oyentes-form-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.login-descripcion {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
    font-size: 16px;
}

.login-oyentes-form .form-group {
    margin-bottom: 20px;
}

.login-oyentes-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.login-oyentes-form input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-oyentes-form input[type="tel"]:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    outline: none;
}

.form-hint {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

.login-button {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #2980b9;
}

.login-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Area protegida */
.area-protegida-header {
    background-color: #2c3e50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}

.area-protegida-header h2 {
    margin: 0;
    font-size: 22px;
}

.area-protegida-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    padding: 0 0 30px 0;
    margin-bottom: 30px;
}

.area-protegida-content {
    padding: 0 20px;
}

.area-protegida-info {
    margin-bottom: 30px;
}

.area-protegida-bienvenida {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.cerrar-sesion {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cerrar-sesion:hover {
    background-color: #c0392b;
    text-decoration: none;
    color: white;
}

.panel-numeros-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.panel-numeros-titulo {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.panel-numeros-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
}

.panel-numero {
    background-color: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    .login-oyentes-container {
        padding: 10px;
    }
    
    .login-oyentes-form-wrapper {
        padding: 20px;
    }
    
    .panel-numeros-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}