@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/* ================================
   Variáveis e Reset Básico
   ================================ */
:root {
    --navbar-top-bg-color: #fff;
    --navbar-vertical-border-color: #cbd0dd;
    --navbar-top-height: 4rem;
}

*,
::after,
::before {
    box-sizing: border-box;
}



/* ================================
   Estilos Globais
   ================================ */


body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-y: auto;
    opacity: 1;
}


a {
    text-decoration: none !important;
    cursor: pointer;
}


li {
    list-style: none;
}


.no-hover-effect {
    border: none;
}


.no-hover:hover, .no-hover:focus {
    background-color: transparent;
    color: inherit;
}



/* ================================
   Tipografia
   ================================ */


h2 {
    font-weight: 700;
    font-size: 1.7rem;
}


h4 {
    font-size: 1.275rem;
    color: var(--bs-emphasis-color);
}


.text-body-emphasis {
    --phoenix-text-opacity: 1;
    color: #141824 !important;
}



.descricao-btn {
    text-align: center;
    font-size: 13px !important;
    font-weight: 100;
    margin-top: 5px;
}






/* ================================
   Componentes
   ================================ */

/* NavBar */

.navbar img {
    height: 40px;
    width: 40px;
}

.navbar-top {
    height: 40px;
    background: var(--navbar-top-bg-color);
    border-bottom: 1px solid var(--navbar-vertical-border-color);
    font-size: .8rem;
    font-weight: 600;
    min-height: var(--navbar-top-height);
    padding: 0 20px;
}

.navbar .navbar-logo,
.logo-text {
    display: flex;
    align-items: center;
    color: rgba(82, 91, 117, 0.8);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.nav-item,
.navbar-nav-custom {
    display: flex;
    align-items: center;
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    padding: 0.75rem 0.5rem;
}

.navbar .dropdown-menu.dropdown-caret::after {
    background-color: white !important;
    content: "";
    position: absolute;
    z-index: -1;
    width: 1rem;
    height: 1rem;
    background: inherit;
    top: -0.375rem;
    left: 7.7rem;
    transform: rotate(45deg);
    border-radius: 0.125rem;
    border-width: 1px;
    border-style: solid;
    border-color: #cbd0dd;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}



/* Dropdown */
.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    border-radius: 5px;
}



.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}



.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    width: 100%;
    background: var(--bs-dark-bg-subtle);
}


.content {
    flex: 1;
    max-width: 100vw;
    width: 100vw;
    padding: 5rem 1.5rem 6.375rem 1.5rem;
}


.card {
    box-shadow: 0 0 .875rem 0 rgba(34, 46, 60, .05);
}

.illustration {
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-emphasis-color);
}

.illustration-img {
    max-width: 150px;
    width: 100%;
}























/* ================================
   Media Queries
   ================================ */

@media screen and (max-width: 480px) {
    .recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}





/* ================================
   Outros Estilos
   ================================ */

.top-1 {
    top: 1px;
}

.mx-lg-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
}


.theme-control-toggle .theme-control-toggle-label {
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 204, 133, 0.24);
    color: #e5780b;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

    .theme-control-toggle .theme-control-toggle-label:hover {
        /* Exemplo de cor ao passar o mouse, substitua conforme necess�rio */
        background-color: #ffcc85;
        color: #d46b08;
    }

.theme-control-toggle-input {
    display: none;
}

    .theme-control-toggle-input:checked ~ .theme-control-toggle-dark {
        display: none;
    }

    .theme-control-toggle-input:not(:checked) ~ .theme-control-toggle-light {
        display: none;
    }



.avatar {
    height: 35px;
    border: 1px solid #cbd0dd;
}


.select2-dropdown {
    z-index: 1100;
}

td {
    vertical-align: middle;
}


.modal-body {
    overflow-y: auto;
    overflow-x: auto;
}

.rowMenu {
    display: flex;
    justify-content: center; /* Alinhar itens ao centro */
    padding-left: 4px; /* Padding no lado esquerdo */
    padding-right: 4px; /* Padding no lado direito */
}

.col-6-edit {
    flex: 0 0 auto;
    width: 50%;
    display: flex;
    justify-content: center; /* Centralizar o conte�do dentro da coluna */
    padding: 6px; /* Espa�amento opcional para melhor apar�ncia */
}

.btn-container {
    width: 110px;
    height: 65px;
    color: #212529 !important;
    border: 1px solid #dcdcdc;
    padding: 10px 12px;
    text-align: center;
    display: inline-block;
    background-color: #f8f8f8;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .btn-container:hover {
        border-color: #c0c0c0;
        background-color: #e9e9e9;
    }

    .btn-container i {
        margin-right: 5px;
        font-size: 24px; /* Ajuste o tamanho do �cone conforme necess�rio */
    }


.col-3 {
    flex: 0 0 auto;
    width: 33.333%;
}


.mb-9 {
    margin-bottom: 4rem !important
}


.btn-editar {
    font-size: 11px;
    font-weight: 600;
    background-color: #0b5ed7 !important;
    color: #fff !important;
}

    .btn-editar:hover {
        background-color: #0a53be !important; /* Cor de fundo um pouco mais escura */
    }



thead th span {
    color: #31374a;
    font-weight: 700;
    font-size: .8rem !important
}


tbody tr td {
    font-size: .8rem !important;
    color: #141824 !important;
}


.border-y {
    border-top: 1px solid #cbd0dd !important;
    border-bottom: 1px solid #cbd0dd !important;
}


.justify-content-md-center {
    background-color: rgb(255, 255, 255) !important;
    border-top: 1px solid #cbd0dd !important;
    border-bottom: 1px solid #cbd0dd !important;
}


#tabelaUsuarios_wrapper .justify-content-md-center {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    margin-top: 21px !important;
}

#tabelaOcorrencias_wrapper .justify-content-md-center {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    margin-top: 21px !important;
}

.dt-column-order {
    position: relative !important;
    margin-left: 20px;
}


.breadcrumb {
    font-size: 0.8rem;
    font-weight: 700;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #3e465b;
    content: var(--phoenix-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='10' width='6' fill='%236e7891' viewBox='0 0 256 480'%3E%3Cpath d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'/%3E%3C/svg%3E")) /* rtl: var(--phoenix-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='10' width='6' fill='%236e7891' viewBox='0 0 256 480'%3E%3Cpath d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'/%3E%3C/svg%3E")) */
}

#tabelaUsuarios_wrapper {
    margin-bottom: 25px;
    margin-top: 10px;
}


.pagination a {
    font-size: 0.9rem;
}

.dt-info {
    font-size: 0.9rem;
}


.dropdown-item {
    color: #333;
    padding: 8px 12px;
}

    .no-hover-effect:hover,
    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #eff2f6;
    }


a.sidebar-link {
    color: #525b75;
    position: relative;
    display: block;
    font-size: 0.9rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    margin-right: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s, color 0.3s;
}

    a.sidebar-link:hover {
        background-color: #eff2f6;
        color: #3e465b;
    }


/* Estiliza��o dos itens do dropdown */
.efeitoHover {
    color: #333 !important; /* Cor do texto */
}


    .efeitoHover:hover, .dropdown-item:focus {
        color: #0056b3 !important; /* Cor do texto */
    }

        /* Garante que todos os elementos dentro de .efeitoHover herdem a cor */
        .efeitoHover:hover *, .efeitoHover:focus * {
            color: inherit !important; /* Cor do texto */
        }


/* Estilos gerais para o texto */
.container-fluid {
    font-size: 14px; /* Reduzindo o tamanho do texto */
}

/* Estilos para o container principal */
.custom-container {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
}


/* Estilos gerais para o texto */
.gl-max-w-80 {
    max-width: 40rem;
}

.gl-max-w-70 {
    max-width: 30rem;
}

.label-bold {
    font-weight: bold;
}

.btn-link {
    color: #007bff;
}




hr {
    border: 0;
    height: 2px;
    background-color: #ccc; /* Cor cinza */
    width: 100%; /* Faz o HR ocupar toda a largura */
}

.file {
    font-size: 0.9rem;
}

.avatar-image {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
}



.content tbody tr:hover {
    background-color: #f5f5f5 !important; /* Cor de fundo quando o mouse est� sobre a linha */
}

.dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus {
    color: #000 !important; /* Muda a cor para preto */
}




/* ================================
   Phoenix Estilos
   ================================ */

.card-body {
    flex: 1 1 auto;
    padding: 1.5rem 1.5rem;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: #31374a;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(203, 208, 221, 0.54);
    border-radius: 0.5rem;
}

.h-100 {
    height: 100% !important;
}

h3, .h3 {
    font-weight: 800;
}

h3, .h3 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.1rem;
    font-weight: 500 !important;
}


h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: .25rem;
    font-weight: 700;
    line-height: 1;
    color: #141824;
}


.text-body-tertiary {
    opacity: 1;
    color: rgba(82, 91, 117, 1) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}






/* ================================
   FIM Phoenix
   ================================ */
