/* Estilos root*/
:root {
    --primary-color: #103663;
    --secondary-color: #DE0D35;
    --blue: #3BA2FF;
    --gray: #8E8E8E;
    --light-gray: #EEE5FF;
    --text-color: #333;
    --background-color: #fafafa;
    --background-dark: #1A1A1A;
    --light-bg: #FAF7FF;
    --border-color: #C3C3C3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.45s;
}

.btn-primary,
.swal2-confirm {
    font-size: 1rem;
    background-color: #103663 !important;
    border-color: #103663;
    color: white;
}

.btn-primary:hover,
.swal2-confirm:hover,
.btn-primary:focus {
    background-color: #002244 !important;
    border-color: #002244;
}

.btn-danger,
.swal2-cancel {
    font-size: 1rem;
    background-color: #DE0D35 !important;
    border-color: #DE0D35;
    color: white;
}

.btn-danger:hover,
.swal2-cancel:hover,
.btn-danger:focus {
    background-color: #980c26;
    border-color: #980c26;
}

html,
body {
    height: 100vh;
    width: 100vw;
    font-family: "Roboto";
    background-color: var(--background-color);
    color: #333;
    font-size: 16px;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    width: 100%;
    align-items: center;
    padding: .5rem 1.5rem;
}

.navbar-brand img {
    height: 2.3rem;
    width: auto;
    object-fit: contain;
}

.navbar-text {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main {
    display: flex;
    width: 100%;
}

.content {
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
}

@media only screen and (max-width: 900px) {

    html,
    body {
        height: 100dvh;
        width: 100dvw;
    }

    .navbar-text{
        display: flex;
        width: fit-content;
        flex-direction: column;
        flex-wrap: wrap;
        margin: 0 !important;
        justify-content: flex-start;
    }

    .navbar-brand img {
        height: 5dvh;
    }
}