:root {
    --primary-color: #01579B;
    --secondary-color: #0277BD;
}

button.nav-link .active{
    background-color: var(--primary-color) !important;
    color: white !important;
}

.badge-user{
    width: 1.7rem;
    height: 1.7rem;
    color: var(--primary-color) !important;
}

body {
    max-height: 100vh;
    min-height: -webkit-fill-available;
    padding-top: 56px;
    /* Altura del header */
    padding-bottom: 70px;
    /* Altura del footer */
    background-color: #e2e3e5;
    overflow-y: hidden;
}
html {
    height: -webkit-fill-available;
}
main {
    height: 100vh;
    height: -webkit-fill-available;
    max-height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-color);
}
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px;
    z-index: 1000;
}
.content-wrapper{
    position: fixed;
    width: 100vw;
    top: 49px;
    margin-bottom: 70px;
    /* Altura del footer */
}
.title {
    background-color: var(--secondary-color);
    color: white;
}

.titulo-modulo{
    background-color: var(--secondary-color);
    font-size: 1.5rem!important;
    border-radius: var(--bs-border-radius)!important;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important;
    text-align: center!important;
    --bs-bg-opacity: 1;
}
.btn-primary{
    background-color: var(--primary-color) !important;
}

.btn-secondary{
    background-color: var(--secondary-color) !important;
}

.img-user-login{
    border-color: var(--secondary-color) !important;
    width: 23%;
}

.img-user-login i{
    color: var(--secondary-color) !important;
}