/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    background: #f9f9f9;
    color: #333;
}

header {
    background: #0073e6;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav {
    background: #005bb5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: white;
    padding: 0.75rem 1rem;
    text-decoration: none;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

main {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.caja {
    flex: 1 1 300px;
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Media query para pantallas pequeñas */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
    }

    nav a {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* original file */

/* .bg-white-lg-none {
    background-color: #db0032;
    padding: 0.74rem 0.95rem;
} */

.bg-white-lg-none {
    background-color: #fff;
    padding: 0.74rem 0.95rem;
}

body {
    margin: 0;
    font-family: Poppins, "Helvetica Neue", sans-serif;
    background-color: ghostwhite;
}

.navbar-white {
    margin: 0px;
    padding: 0px;
    background-color: #fff;
}

#spinner {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
}

html,
body {
    margin: 0;
}

.btn-primary {
    color: #fff !important;
    background-color: #db0032 !important;
    border-color: #db0032 !important;
}

.btn-primary:hover {
    background-color: #ED6D8F !important;
    border-color: #ED6D8F !important;
}

.btn-primary:active {
    background-color: #db0032 !important;
    border-color: #ED6D8F !important;
}

.btn-primary:focus {
    background-color: #db0032 !important;
    border-color: #ED6D8F !important;
    box-shadow: 0 0 0 0.2rem rgba(239, 117, 117, 0.5) !important;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-select:focus {
    outline: none;
    box-shadow: none;
}

.form-check-input:focus {
    outline: none;
    box-shadow: none;
    border-color: black;
}

.form-check-input:checked {
    background-color: #6c757d;
    border-color: #6c757d;
}

.link {
    color: #0d6efd;
}

.link:hover {
    color: #0d6efd;
}

.link:active {
    color: #0d6efd !important;
}

.nounderline {
    text-decoration: none !important
}

.brand-logo>img {
    margin-left: 20px;
}

.form-control.is-valid:focus,
.was-validated :valid.form-control {
    border-color: #dddddd !important;
    background-image: inherit !important;
    box-shadow: inherit !important;
}

textarea {
    resize: none;
}

.form-check-input {
    font-size: x-large;
}

@media print {
    .no-print {
        display: none !important;
    }
}

/* @media (max-width: 767.98px) {
    .navbar .nav-item img {
        width: 80px;
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .navbar-nav {
        justify-content: center;
        gap: 10px;
    }
} */