/* style.css - Tema negro neón */
body {
    background: #000000;
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
}

.card {
    background: #111111;
    border: 1px solid #00ffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

input, select, textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 8px #00ffff;
}

button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #00ffff;
    color: #000000;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

button:hover {
    background: #00cccc;
    box-shadow: 0 0 15px #00ffff;
}

a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #00ffff;
    text-decoration: underline wavy #00ffff;
}

.alerta {
    background: #ff0033;
    color: #000000;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-weight: bold;
    border-left: 6px solid #ff99aa;
    box-shadow: 0 0 10px rgba(255, 0, 51, 0.5);
}

/* Mejoras para títulos y espaciado */
h2, h3 {
    color: #ffffff;
    border-bottom: 2px solid #00ffff;
    padding-bottom: 8px;
    margin-top: 30px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
    border-bottom-width: 1px;
}

/* Estilo para enlaces de navegación (dashboard) */
a + a {
    margin-left: 10px;
}

/* Ajuste para que los botones y enlaces dentro de .card se vean bien */
.card a {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
}

.card a:hover {
    background: rgba(0, 255, 255, 0.3);
}

.estado-etiqueta {
    background: #00ff99;
    color: #000;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}