body {
    background: #f2f2f2 !important;
    background-color: white !important;
    font-family: Arial, sans-serif;
}

.login-container {
    width: 350px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


    .login-container h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #333;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        color: #555;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

.btn-login {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #007bff; /* azul */
    border: none;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .btn-login:hover {
        background: #0056b3;
    }

.mensaje-error {
    color: red;
    text-align: center;
    margin-top: 10px;
}
.login-logo {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 120px;
    height: auto;
}
body {
    background: white !important;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-cancelar {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #dc3545;
    border: none;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

    .btn-cancelar:hover {
        background: #a71d2a;
        transition: background 0.3s ease;
    }

.button-container {
    display: flex;
    justify-content: space-between; /* Espaciado entre los botones */
    gap: 10px; /* Espacio entre los botones */
}

.btn-login, .btn-cancelar {
    width: 48%; /* Los botones ocuparán el 48% del ancho */
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-login {
    background: #007bff; /* Azul */
    border: none;
    color: white;
}

    .btn-login:hover {
        background: #0056b3;
    }

.btn-cancelar {
    background: #dc3545; /* Rojo */
    border: none;
    color: white;
}

    .btn-cancelar:hover {
        background: #a71d2a;
    }

.input-login {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
.tabla {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .tabla th, .tabla td {
        border: 1px solid #ccc;
        padding: 8px;
        text-align: left;
    }

    .tabla th {
        background-color: #007bff;
        color: white;
    }
.tabla-estilizada {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .tabla-estilizada th, .tabla-estilizada td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }

    .tabla-estilizada th {
        background-color: #007bff;
        color: white;
    }

    .tabla-estilizada tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .tabla-estilizada tr:hover {
        background-color: #e9f5ff;
    }
.body-content {
    background-color: white !important;
    padding: 20px;
    border-radius: 8px;
}
.navbar-custom {
    background-color: #004080; /* azul oscuro personalizado */
}
.boton-pequeno {
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 4px;
}
body {
    background: #ffffff !important;
    background-image: none !important;
}