/* global.css */

/* Estilos de fondo y tipografía */
body {
    background: linear-gradient(to bottom, #0F2027, #203A43, #2C5364);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.main-container {
    flex: 1;
    padding: 50px 0;
    text-align: center;
}

.form-label {
    color: #00D4FF;
    font-weight: bold;
}

.form-control,
.btn-primary {
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #00D4FF, #007CF0);
    border: none;
    font-weight: bold;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #007CF0, #00D4FF);
}

/* Estilo del footer */
footer {
    background-color: rgba(15, 32, 39, 0.95);
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #00D4FF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Estilos adicionales */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.pagination {
    justify-content: center;
}

.pagination .disabled .page-link {
    cursor: not-allowed;
    background-color: #6c757d;
    border-color: #6c757d;
}

.pagination .active .page-link {
    background-color: #00D4FF;
    border-color: #00D4FF;
}

.btn-warning {
    background-color: #ffc107;
    border: none;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #00D4FF;
}

.alert {
    color: #000;
}
