
body {
    background-color: #EEEEEE;
    margin-bottom: 60px;
}


.navbar-dark, 
#mainNavbar { 
    background-color: #001240 !important;
}


.frame {
    border: 1px solid #F8FAF9;
    padding: 10px; /* was 20px */
    margin-bottom: 8px; /* was 10px */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: box-shadow .3s, background-color .3s;
}

    .frame:hover {
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        background-color: #e9ecef;
        cursor: pointer;
    }

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


.footerlinks {
    color: white !important;
    text-decoration: none;
}

    .footerlinks:hover {
        color: #1878BB !important;
    }


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.login-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: hidden;
    z-index: 9999;
}

.login-left {
    flex: 1;
    background-color: #001240;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

    .login-left .login-logo {
        max-width: 400px;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .login-left .login-slogan {
        color: #ffffff;
        font-size: 1.1rem;
        margin-top: 8px;
        opacity: 0.8;
    }

.login-right {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

    .login-right .login-form-container {
        width: 100%;
        max-width: 400px;
    }

.login-title {
    color: #001240;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
}

.login-input {
    background-color: #001240;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    height: 48px;
    box-shadow: none;
}

    .login-input::placeholder {
        color: rgba(255,255,255,0.7);
    }

    .login-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
    }

.login-label {
    color: #001240;
    font-weight: 500;
}

.form-check-input {
    border: 1px solid #001240;
    background-color: #ffffff;
}

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

.form-check-label {
    color: #001240;
}

.link-forgot-password {
    color: #1878BB;
    text-decoration: none;
    font-size: 0.9rem;
}

    .link-forgot-password:hover {
        text-decoration: underline;
    }

.btn-login {
    background-color: #1878BB;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

    .btn-login:hover {
        background-color: #1464a8;
        color: #ffffff;
    }

.login-error {
    margin-bottom: 20px;
}

.card-header-darkblue {
    background-color: #001240;
    color: #ffffff;
}

    /* Em seu arquivo CSS (ex.: site.css) */
    .card-header-darkblue th {
        background-color: #001240;
        color: #ffffff;
        border-bottom: 2px solid #001240; /* opcional: ajusta a borda caso queira um visual mais “unificado” */
    }

.dashboard-card {
    border-radius: 1rem; /* cantos arredondados */
    transition: transform .3s ease, /* animação suave */
    box-shadow .3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* sombra leve inicial */
}

    .dashboard-card:hover {
        transform: translateY(-5px); /* levanta o card */
        box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* sombra mais intensa */
    }

