/* --- INICIO: ESTILOS PANEL DE ADMINISTRACIÓN SECRETO --- */

body.admin-bg {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.admin-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.admin-header h1 {
    color: #ff9800;
}

/* Modal de Login Secreto */
.login-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.login-box {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.login-box input {
    width: 100%;
    padding: 15px;
    margin: 20px 0;
    background: #2a2a2a;
    border: 1px solid #444;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 4px;
}

.login-box button {
    width: 100%;
    padding: 15px;
    background: #ff9800;
    color: black;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.login-box button:hover {
    background: #e68a00;
}

/* Grillas del Panel */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.data-card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    overflow-y: auto;
    max-height: 600px;
}

.data-card h2 {
    color: #4caf50;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

/* Tablas */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #333;
}

th {
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
}

tr:hover {
    background-color: #2a2a2a;
}

/* --- FIN: ESTILOS PANEL DE ADMINISTRACIÓN SECRETO --- */
