body {
    background-color: #f4f5fc;
}

h2 {
    color: #0ba5fe;
}

h3 {
    color: #212529;
}

.nav-link {
    color: #ffffff;
}

.nav-link:hover {
    color: #0ba5fe;
}

.config {
    color: #ffffff;
}

.config:hover {
    color: #2bd090;
}

.gestao {
    color: #ffffff;
}

.gestao:hover {
    color: #d02b8b;
}

.flex-container {
    display: flex;
    align-items: center;
}

.shadow {
    background-color: white;
    border-radius: 10px 10px 0px 0px;
}

.flex-item {
    width: 5px;
    height: 30px;
    background-color: #0ba5fe;
    border-radius: 0px 10px 10px 0px;
}

.flex-item-config {
    width: 5px;
    height: 30px;
    background-color: #2bd090;
    border-radius: 0px 10px 10px 0px;
}

.flex-item-gestao {
    width: 5px;
    height: 30px;
    background-color: #d02b8b;
    border-radius: 0px 10px 10px 0px;
}

.container {
    max-width: calc(100vw - 280px);
    max-height: 100vh;
    margin-left: 280px;
    overflow: auto;
}

.container-center {
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
}

.info {
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    width: 100%;
    min-height: 145px;
}

.info-logo {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 65px;
    height: 65px;
    padding: 10px;
    background-color: transparent;
}

.b-1 {
    color: #0ba5fe;
}

.b-2 {
    color: rgba(42, 194, 135, 1);
}

.b-3 {
    color: rgba(242, 100, 119, 1);
}

.b-4 {
    color: rgba(40, 161, 163, 1);
}

.card-1 {
    color: #0ba5fe;
}

.card-2 {
    color: rgba(42, 194, 135, 1);
}

.card-3 {
    color: rgba(242, 100, 119, 1);
}

.card-4 {
    color: rgba(40, 161, 163, 1);
}

.gradiente1 {
    background: linear-gradient(90deg, rgba(255, 146, 105, 1) 0%, rgba(249, 187, 156, 1) 77%);
    height: 20px;
    border-radius: 0px 0px 10px 10px;
}

.gradiente2 {
    background: linear-gradient(90deg, rgba(42, 194, 135, 1) 0%, rgba(49, 240, 165, 1) 77%);
    height: 20px;
    border-radius: 0px 0px 10px 10px;
}

.gradiente3 {
    background: linear-gradient(90deg, rgba(242, 100, 119, 1) 0%, rgba(255, 144, 158, 1) 77%);
    height: 20px;
    border-radius: 0px 0px 10px 10px;
}

.gradiente4 {
    background: linear-gradient(90deg, #0ba5fe 0%, rgba(16, 216, 221, 1) 77%);
    height: 20px;
    border-radius: 0px 0px 10px 10px;
}

.tableTitle {
    height: 30px;
    width: 100%;
    background: linear-gradient(90deg, #0ba5fe 0%, rgba(16, 216, 221, 1) 77%);
    text-align: center;
    padding-top: 3px;
}

.table {
    max-width: 100%;
    overflow-x: auto;
}

.btn {
    background-color: #0ba5fe;
    width: 250px;
    animation: btnAnimation 0.5s;
}

.btn:hover {
    background-color: #6fb9e4;
}

@keyframes btnAnimation {
    0% {
        margin-left: -50px;
    }
}

.voltar {
    border-radius: 5px;
    border-style: none;
    width: 100px;
    height: 40px;
}

.voltar:hover {
    background-color: #bdbdbd;
    border-radius: 5px;
    border-style: none;
    width: 100px;
    height: 40px;
}

.delete {
    background-color: red;
    color: white;
    border-radius: 8px;
    border-style: none;
    width: 80px;
}

.delete:hover {
    background-color: rgb(190, 0, 0);
}

.edit {
    background-color: rgb(238, 255, 0);
    border-radius: 8px;
    border-style: none;
    width: 80px;
}

.edit:hover {
    background-color: rgb(190, 177, 0);
}

.document {
    background-color: rgb(255, 166, 0);
    border-radius: 8px;
    border-style: none;
    width: 120px;
}

.document:hover {
    background-color: rgb(206, 134, 0);
}

.presenca {
    background-color: #7DDA58;
    border-radius: 8px;
    border-style: none;
    width: 180px;
}

.presenca:hover {
    background-color: #62af43;
}

.cancelagendamento {
    background-color: #e06534;
    border-radius: 8px;
    border-style: none;
    width: 180px;
}

.cancelagendamento:hover {
    background-color: #b84f26;
}

.loginMenu {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 350px;
    height: 500px;
    border-radius: 10px;
}

.entrar {
    background-color: #FF8206;
    width: 250px;
}

.entrar:hover {
    background-color: #ffa44a;
}

.filtros {
    width: 100%;
    background-color: white;
    border-radius: 10px;
}