.form-signin {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: auto;
}
@font-face {
    font-family:'St Ryde Regular';
    src: url("{{ public_path('fonts/2cf07e52-631c-4a7a-97ec-26340a960579.tff') }}");
}
.wrapper {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    /* background-color: #222d32;*/
}
.main-header {
    position: relative;
    max-height: 100px;
    z-index: 1030;
}
.main-header .logo {
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    display: block;
    float: left;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    width: 230px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 0 15px;
    font-weight: 300;
    overflow: hidden;
    background-color: #000 !important;
}
.navbar-redeimpar{
    background-color: #213469;
    position: relative;
    top: 0;
    z-index: 1071;
    padding: 0px;
    display: block;
}

.main-header .navbar-custom-menu, .main-header .navbar-right {
    float: right;
    padding: 5px;
}

.main-header .navbar {
    -webkit-transition: margin-left 0.3s ease-in-out;
    -o-transition: margin-left 0.3s ease-in-out;
    transition: margin-left 0.3s ease-in-out;
    margin-bottom: 0;
    margin-left: 230px;
    border: none;
    min-height: 50px;
    border-radius: 0;
}

.main-header .sidebar-toggle {
    float: left;
    background-color: transparent;
    background-image: none;
    padding: 15px 15px;
    font-family: fontAwesome;
}

.main-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 50px;
    min-height: 100%;
    width: 230px;
    z-index: 810;
    -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
    -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}

.sidebar {
    padding-bottom: 10px;
}

.sidebar-sticky {
    position: sticky;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidebar-menu, .main-sidebar .user-panel, .sidebar-menu > li.header {
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-wrapper, .main-footer {
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    margin-left: 230px;
    z-index: 820;
}

.main-footer {
    background: #fff;
    padding: 15px;
    color: #444;
    border-top: 1px solid #d2d6de;
}
.layout-top-nav .content-wrapper,
.layout-top-nav .main-footer {
  margin-left: 0;
}
@media (max-width: 767px) {
  .content-wrapper,
  .main-footer {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .sidebar-collapse .content-wrapper,
  .sidebar-collapse .main-footer {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .sidebar-open .content-wrapper,
  .sidebar-open .main-footer {
    -webkit-transform: translate(230px, 0);
    -ms-transform: translate(230px, 0);
    -o-transform: translate(230px, 0);
    transform: translate(230px, 0);
  }
}

main{
    background-color: #FFF;
}

.btn-circle.btn-xl {
    width: 50px;
    height: 50px;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 20px;
    line-height: 1.47;
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
    position: fixed; /* Ou absolute, dependendo do contexto */
    top: 10px; /* Ajuste conforme necessário */
    right: 10px; /* Ajuste conforme necessário */
    z-index: 1000; /* Para garantir que ele fique acima de outros elementos */
}

.tab-container {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    background-color: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab:hover {
    background-color: #f1f1f1;
    color: #0057a5;
}

.tab-active {
    background-color: #0057a5;
    color: white;
}

.tab-content {
    display: none;
    padding: 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
}

.tab-content.active {
    display: block;
}

.tab-content.no-hide {
    display: block !important;
}

.document-list {
    margin-top: 20px;
}

.document-item {
    margin-bottom: 15px;
}

.sub-document-list {
    padding-left: 20px;
}

.document-entry {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.75) url(img/source.gif) no-repeat center center;
    z-index: 10000;
}

@media (min-width: 992px) {
    .modal-full {
        min-width: 100%;
        min-height: 700px;
        padding-left: 260px;
    }
}

@media (max-width: 768px) {
    .main-sidebar {
        width: 100px; /* Ajuste para telas menores */
    }

    .content-wrapper {
        margin-left: 100px; /* Ajuste para telas menores */
    }
}


.avatar {
    vertical-align: middle;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.btn-circle.btn-xl {
    width: 50px;
    height: 50px;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 20px;
    line-height: 1.47;
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}

.btn-circle, .btn-circle.btn-xl {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 40px;
    background-color: #1B2241;
    vertical-align: middle;
    display: block;
    z-index: 10;
}

html, body {
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

.login-page {
    background-color: #640577 !important;
}

/* Fundo após o login */
.authenticated-page {
    background-color: #e4e4e4 !important;
}

.content-wrapper {
    padding: 0 15px;
    background-color: #e4e4e4 !important;
}

.container-fluid {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.centered-pagination {
    text-align: center;
}

.card {
    transition: transform 0.3s ease; /* Adiciona uma transição suave */
}

.card:hover {
    transform: translateY(-10px); /* Move o card 10px para cima */
}

.card-divider {
    border: none; /* Remove a borda padrão */
    border-top: 1px solid #1B2241; /* Adiciona uma linha fina e sólida */
    margin: 10px 0; /* Margens superior e inferior para espaçamento */
}

/* Estilo para o modal */
.modal-content {
    border-radius: 15px;
    overflow-y: auto; /* Borda arredondada */
}

/* Fundo opaco */
.modal-backdrop.show {
    opacity: 0.8; /* Ajuste o nível de opacidade conforme necessário */
}

/* Centraliza o modal verticalmente na tela */
.modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.nav-label {
    display: inline-block;
    margin-left: 10px;
}

.main-sidebar {
    width: 250px;
    transition: width 0.3s ease-in-out;
    background-color: #640577;
}

.content-wrapper {
    margin-left: 250px;
    transition: margin-left 0.3s ease-in-out;
    background-color: #e4e4e4;
}

.user-panel {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 10px;
}

.user-panel .image img {
    width: 35px;
    height: 35px;
}

.user-panel .info {
    padding-left: 10px;
}

.sidebar {
    overflow-y: auto;
    height: 100%;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #444 #640577; /* Firefox */
    padding-top: 10px;
    background-color: #640577;
    color: #ffffff;
}

.sidebar .nav-item .nav-link{
    color: #ffffff;!important;
}

.sidebar-collapse .main-sidebar {
    width: 80px;
}

.sidebar-collapsed .brand {
    display: none;
}

.sidebar-collapse .content-wrapper {
    margin-left: 80px;
}

.sidebar-collapse .nav-sidebar .nav-item .nav-link .nav-icon {
    display: block;
    margin: 0 auto;
}

.sidebar-collapse .nav-sidebar .nav-item .nav-link .nav-label {
    display: none;
}


.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: #640577;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #640577;
    border-radius: 10px;
    border: 2px solid #640577;
}

.sidebar .nav-item.text-center {
    margin-bottom: 20px;
}

.nav-sidebar .nav-item .nav-link.active {
    background-color: #20c997 !important;
    border-radius: 10px;
    color: #ffffff;
}


.brand-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px !important;
}

.brand {
    max-height: 60px !important;
    float: left;
    line-height: .8;
    width: auto;
}

.nav-link {
    color: #ffffff;
}

.nav-link.active {
    background-color: #00c0ef;
    color: #ffffff;
    border-radius: 10px;
}

.nav-link i.fa-bars {
    font-size: 1.5rem;
}

.logout-link {
    background-color: #dc3545;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 15px;
    text-align: left;
    display: block;
}

.logout-link:hover {
    background-color: #c82333; /* Darker shade for hover effect */
    color: #fff;
}

.floating-profile {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #343a40;
    border-radius: 30px;
    padding: 10px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.floating-profile img {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.floating-profile-menu {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: none;
}

.floating-profile-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.floating-profile-menu a:hover {
    background-color: #f8f9fa;
}

.widget-user-header{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color:#EEE;
}

.widget-candidate-header{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
}

#app {
    background-color: #e4e4e4;
}

.btn-confirm {
    background-color:#0057a5 !important;
    border-radius:25px !important;
    color:#fff !important;
}

.btn-edit {
    background-color:#56BA47 !important;
    border-radius:25px !important;
    color:#fff !important;
}

#overlay {
    position: fixed;
    display: none; /* O overlay deve estar oculto até que seja necessário */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    z-index: 9999; /* Colocar o overlay à frente de outros elementos */
}

/* Centraliza o loader */
#loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: white; /* Fundo branco para o quadrado */
    padding: 20px;
    border-radius: 8px;
}

/* Estilo do loader */
.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%; /* Faz um círculo */
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto 10px;
}

/* Animação de rotação */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.document-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.document-icons {
    display: flex;
    align-items: center;
}

.document-icons i {
    cursor: pointer;
    margin-left: 5px; /* Ajuste a margem conforme necessário */
}

a.open-modal {
    flex: 1; /* Faz com que o link ocupe o máximo de espaço possível */
}

.approval-button {
    display: inline-flex;
    align-items: center;
    background-color: #20c997;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.approval-button:hover {
    background-color: #17a589;
}

.status.blue {
    background-color: #f0f9ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #007bff;
    border: 1px solid #b8daff;
}

.status.green {
    background-color: #e6f7e6;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #28a745;
    border: 1px solid #c3e6cb;
}

.status.red {
    background-color: #f8d7da;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #dc3545;
    border: 1px solid #f5c6cb;
}


.group-checkbox {
    font-size: 1rem;
    padding: 10px !important;
    margin-bottom: 10px !important;
    max-width: 30.5% !important;
    border-radius: 5px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.pagination svg,
.pagination i {
    width: 1em !important;
    height: 1em !important;
    font-size: 1em !important;
    vertical-align: middle;
}
