body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.header {
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
}

.header-logo {
    max-height: 60px;
}

.header-small-logo {
    max-height: 160px;
    margin-right: 100px;
}

.header-title {
    font-size: 41px;
    color: #fff;
    font-weight: lighter;
    position: relative;
    z-index: 99999;
    margin-left: 37px;
}

.header-title-highlight {
    color: #fff;
    font-weight: bold;
}

.header-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -41px;
}

.line-left, .line-right {
    height: 30px;
    width: 50%;
}

.line-left {
    background-color: #00406e;
    border-bottom-left-radius: 5px;
}

.line-right {
    background-color: #007BFF;
    border-bottom-right-radius: 5px;
}

.container-fluid {
    padding: 0; /* Remove sombras nas laterais */
}

.card {
    border-radius: 10px;
    background: #ffffff;
    width: 600px; /* Tamanho do card ajustado */
    margin: 0 15px; /* Ajuste de margem para não ter sombra lateral */
}

.card-body {
    text-align: left;
}

.form-label {
    color: #222;
}

.form-control {
    border-radius: 0; /* Remover cantos arredondados dos inputs */
}

.btn-primary {
    background-color: #007BFF;
    border: none;
    width: 100px; /* Tamanho do botão */
}

.btn-primary:hover {
    background-color: #0056b3;
}

hr {
    border-top: 2px solid #00406e;
}
.footer {
    background-color: #00406e;
    color: #fff;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.footer-line {
    border-top: 2px solid #fff;
    margin-bottom: 10px;
}

.footer p {
    margin: 0 0 10px;
}

.footer-icon {
    max-height: 24px;
    margin-right: 10px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.dashboard-title {
    font-size: 36px;
    color: #00406e;
    font-weight: bold;
}

.dashboard-welcome {
    color: #007BFF;
}

.dashboard-icon {
    margin-bottom: 15px;
}

.dashboard-text {
    font-size: 16px;
    color: #007BFF;
    font-weight: bold;
}

.bi-house-door-fill, .bi-box-arrow-right {
    font-size: 20px;
    color: #00406e;
}

.icon {
    width: 20px;
    height: 20px;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}