.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: #1B2241 !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: #1B2241;
}

.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 #1B2241; /* Firefox */
    padding-top: 10px;
    background-color: #1B2241;
    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: #1B2241;
    border-radius: 10px;
}

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

.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: 80px;
}

.brand {
    max-height: 90px;!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:#1abc9c !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;
}

/* ===== PADRONIZAÇÃO GLOBAL DE BOTÕES ===== */
/* Força todos os botões a terem o mesmo border-radius */
.btn {
    border-radius: 8px !important;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn-sm {
    border-radius: 6px !important;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    border-radius: 10px !important;
}

/* Garantir que botões lado a lado tenham o mesmo border-radius */
.btn-group .btn,
.d-flex .btn,
.btn-group-vertical .btn {
    border-radius: 8px !important;
}

/* Sobrescrever qualquer border-radius customizado inline */
.btn[style*="border-radius"],
[style*="border-radius"] .btn {
    border-radius: 8px !important;
}

/* Botões pequenos de ação na tabela */
.btn-sm {
    border-radius: 6px !important;
}

/* Botões de formulário específicos */
.btn-primary {
    border-radius: 8px !important;
}

.btn-outline-secondary {
    border-radius: 8px !important;
}

.btn-outline-primary {
    border-radius: 8px !important;
}

.btn-outline-success {
    border-radius: 8px !important;
}

.btn-outline-danger {
    border-radius: 8px !important;
}

.btn-outline-info {
    border-radius: 8px !important;
}

/* Botões de modal */
.modal-footer .btn {
    border-radius: 8px !important;
}

/* Garantir que flex-fill funcione corretamente */
.d-flex .btn.flex-fill {
    border-radius: 8px !important;
}

/* ===== ESTILO MINIMALISTA PARA TABELAS ===== */
.table-minimalist {
    background: white;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table-minimalist thead th {
    background-color: #f8f9fa !important;
    border: none !important;
    border-bottom: none !important;
    color: #495057 !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 12px 16px !important;
}

/* Forçar remoção de qualquer borda azul em tabelas */
.table thead th {
    border-bottom: none !important;
    border: none !important;
}

.table-minimalist thead {
    border-bottom: none !important;
}

.table-minimalist tbody tr {
    border: none;
    transition: background-color 0.15s ease;
}

.table-minimalist tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table-minimalist tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.table-minimalist tbody tr:hover {
    background-color: #e9ecef;
}

.table-minimalist tbody td {
    border: none;
    padding: 12px 16px;
    color: #495057;
    font-size: 0.875rem;
    vertical-align: middle;
}

/* Status indicators minimalistas */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #495057;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.pending::before {
    background-color: #007bff;
}

.status-indicator.approved::before {
    background-color: #28a745;
}

.status-indicator.rejected::before {
    background-color: #dc3545;
}

/* Botões de ação minimalistas */
.btn-action-minimal {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background-color: #f8f9fa;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
    transition: all 0.15s ease;
    font-size: 0.875rem;
}

.btn-action-minimal:hover {
    background-color: #e9ecef;
    color: #495057;
    transform: translateY(-1px);
}

.btn-action-minimal.info:hover {
    background-color: #d1ecf1;
    color: #0c5460;
}

.btn-action-minimal.view:hover {
    background-color: #d4edda;
    color: #155724;
}

.btn-action-minimal.delete:hover {
    background-color: #f8d7da;
    color: #721c24;
}

/* Links de observação */
.observation-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.observation-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.observation-link.rejected {
    color: #dc3545;
}

.observation-link.rejected:hover {
    color: #c82333;
}

/* Pontos */
.points-value {
    font-weight: 500;
    color: #495057;
}

.points-dash {
    color: #6c757d;
}

/* ===== PADRÃO MINIMALISTA GLOBAL PARA TODAS AS TABELAS ===== */
/* Aplicar estilo minimalista a todas as tabelas por padrão */
.table {
    background: white;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table thead th {
    background-color: #f8f9fa !important;
    color: #495057 !important;
    font-weight: 600;
    border: none;
    padding: 16px 12px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody tr {
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.15s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

.table tbody td {
    border: none;
    padding: 16px 12px;
    vertical-align: middle;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
}

/* Remover estilos antigos */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: transparent;
}

/* ===== BADGES MINIMALISTAS FORÇADOS EM TODAS AS TABELAS ===== */
.table .badge,
.table [class*="badge-"],
.table [class*="bg-"] {
    background-color: transparent !important;
    border: 1px solid #e9ecef !important;
    color: #495057 !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    min-width: auto !important;
    width: auto !important;
}

/* Cores específicas para badges */
.table .badge.bg-primary,
.table .badge.badge-primary,
.table [class*="badge-primary"],
.table [class*="bg-primary"] {
    border-color: #007bff !important;
    color: #007bff !important;
}

.table .badge.bg-success,
.table .badge.badge-success,
.table [class*="badge-success"],
.table [class*="bg-success"] {
    border-color: #28a745 !important;
    color: #28a745 !important;
}

.table .badge.bg-warning,
.table .badge.badge-warning,
.table [class*="badge-warning"],
.table [class*="bg-warning"] {
    border-color: #ffc107 !important;
    color: #ffc107 !important;
}

.table .badge.bg-danger,
.table .badge.badge-danger,
.table [class*="badge-danger"],
.table [class*="bg-danger"] {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.table .badge.bg-info,
.table .badge.badge-info,
.table [class*="badge-info"],
.table [class*="bg-info"] {
    border-color: #17a2b8 !important;
    color: #17a2b8 !important;
}

.table .badge.bg-secondary,
.table .badge.badge-secondary,
.table [class*="badge-secondary"],
.table [class*="bg-secondary"] {
    border-color: #6c757d !important;
    color: #6c757d !important;
}

/* ===== BOTÕES MINIMALISTAS FORÇADOS EM TODAS AS TABELAS ===== */
.table .btn {
    border-radius: 6px !important;
    font-size: 0.875rem !important;
    padding: 6px 12px !important;
    border: 1px solid #e9ecef !important;
    background-color: #f8f9fa !important;
    color: #495057 !important;
    transition: all 0.15s ease !important;
    min-width: 32px !important;
    width: auto !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 2px !important;
}

.table .btn:hover {
    background-color: #e9ecef !important;
    border-color: #dee2e6 !important;
    transform: translateY(-1px) !important;
}

/* ===== TODOS OS BOTÕES MINIMALISTAS CINZA ===== */
/* Forçar TODOS os botões para estilo minimalista cinza */
.table .btn-primary,
.table .btn-success,
.table .btn-danger,
.table .btn-warning,
.table .btn-info,
.table .btn-secondary {
    background-color: #f8f9fa !important;
    border-color: #e9ecef !important;
    color: #6c757d !important;
}

.table .btn-primary:hover,
.table .btn-success:hover,
.table .btn-danger:hover,
.table .btn-warning:hover,
.table .btn-info:hover,
.table .btn-secondary:hover {
    background-color: #e9ecef !important;
    border-color: #dee2e6 !important;
    color: #495057 !important;
}

/* ===== CORREÇÕES ESPECÍFICAS PARA ELEMENTOS PROBLEMÁTICOS ===== */
/* Forçar estilos minimalistas em todos os elementos de tabela */
.table * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* Corrigir spans e divs que podem ter estilos inline */
.table span,
.table div,
.table p {
    font-size: inherit !important;
    font-weight: inherit !important;
}

/* Garantir que todos os botões tenham o mesmo tamanho */
.table .btn-sm,
.table .btn-xs {
    min-width: 32px !important;
    height: 32px !important;
    padding: 6px 12px !important;
}

/* Garantir que os ícones sejam visíveis */
.table .btn i,
.table .btn .fas,
.table .btn .far,
.table .btn .fab,
.table .btn .fa {
    font-size: 0.875rem !important;
    color: inherit !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
    font-weight: 900 !important;
}

/* Garantir que ícones específicos funcionem */
.table .fa-trash-alt,
.table .fa-trash,
.table .fa-edit,
.table .fa-pencil-alt,
.table .fa-pencil,
.table .fa-eye,
.table .fa-info-circle,
.table .fa-check,
.table .fa-times,
.table .fa-download {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* ===== ÍCONES MINIMALISTAS CINZA ===== */
/* Todos os ícones em cinza para consistência */
.table .btn-primary i,
.table .btn-success i,
.table .btn-danger i,
.table .btn-warning i,
.table .btn-info i,
.table .btn-secondary i {
    color: #6c757d !important;
}

/* Garantir que TODOS os ícones sejam visíveis em botões de ação */
.table .btn-action-minimal i,
.table .btn-action-minimal .fas,
.table .btn-action-minimal .far,
.table .btn-action-minimal .fa {
    font-size: 0.875rem !important;
    color: #6c757d !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.table .btn-action-minimal:hover i,
.table .btn-action-minimal:hover .fas,
.table .btn-action-minimal:hover .far,
.table .btn-action-minimal:hover .fa {
    color: #495057 !important;
}

/* Forçar visibilidade de ícones específicos */
.table .fa-eye,
.table .fa-check,
.table .fa-times,
.table .fa-download,
.table .fa-info-circle {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #6c757d !important;
}

/* Hover states para ícones - cinza mais escuro */
.table .btn-primary:hover i,
.table .btn-success:hover i,
.table .btn-danger:hover i,
.table .btn-warning:hover i,
.table .btn-info:hover i,
.table .btn-secondary:hover i {
    color: #495057 !important;
}

/* Corrigir badges que podem ter larguras variáveis */
.table .badge,
.table [class*="badge-"],
.table [class*="bg-"] {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 120px !important;
}

/* Garantir consistência em elementos de ação */
.table .btn-group {
    display: inline-flex !important;
    gap: 4px !important;
}

.table .btn-group .btn {
    margin: 0 !important;
}

.table thead th {
    background-color: #f8f9fa;
    border: none;
    color: #495057;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
}

.table tbody tr {
    border: none;
    transition: background-color 0.15s ease;
}

.table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.table tbody tr:hover {
    background-color: #e9ecef;
}

.table tbody td {
    border: none;
    padding: 12px 16px;
    color: #495057;
    font-size: 0.875rem;
    vertical-align: middle;
}

/* Badges minimalistas */
.badge-minimalist {
    background-color: transparent;
    border: 1px solid #e9ecef;
    color: #495057;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.badge-minimalist.success {
    border-color: #d4edda;
    color: #155724;
    background-color: #f8fff9;
}

.badge-minimalist.warning {
    border-color: #ffeaa7;
    color: #856404;
    background-color: #fffbf0;
}

.badge-minimalist.danger {
    border-color: #f8d7da;
    color: #721c24;
    background-color: #fff5f5;
}

.badge-minimalist.info {
    border-color: #d1ecf1;
    color: #0c5460;
    background-color: #f0f9ff;
}

.badge-minimalist.primary {
    border-color: #bee5eb;
    color: #004085;
    background-color: #e7f3ff;
}

/* ===== CARDS MINIMALISTAS PARA DOCENTES ===== */
.card-minimalist {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    overflow: hidden;
}

.card-minimalist:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.card-minimalist .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 16px 20px;
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.card-minimalist .card-body {
    padding: 20px;
}

.card-minimalist .card-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 16px 20px;
}

/* Cards de docente específicos */
.docente-card {
    transition: all 0.2s ease;
}

.docente-card .card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: white;
    transition: all 0.2s ease;
}

.docente-card .card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.docente-card .card-title {
    color: #495057;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.docente-card .card-text {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
}

.docente-card .card-text strong {
    color: #495057;
    font-weight: 600;
}

/* Badges nos cards */
.docente-card .badge {
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 4px 8px;
}

.docente-card .badge-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.docente-card .badge-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.docente-card .badge-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Botões nos cards */
.docente-card .btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.docente-card .btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
}

.docente-card .btn-outline-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.docente-card .btn-outline-success {
    border-color: #28a745;
    color: #28a745;
}

.docente-card .btn-outline-success:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

/* Avatar do docente */
.docente-card img {
    border: 2px solid #e9ecef;
    transition: border-color 0.2s ease;
}

.docente-card:hover img {
    border-color: #007bff;
}

/* Informações de contato */
.docente-card .contact-info {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.docente-card .contact-info strong {
    color: #495057;
    font-weight: 600;
}

/* Estatísticas do docente */
.docente-card .stats {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
}

.docente-card .stats small {
    color: #6c757d;
    font-size: 0.8rem;
}

.docente-card .stats .badge {
    margin: 0 4px;
}

/* ===== CARDS DE ESTATÍSTICAS MINIMALISTAS ===== */
.stats-card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stats-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.stats-card-accent.orange { background-color: #ff6b35; }
.stats-card-accent.green { background-color: #28a745; }
.stats-card-accent.red { background-color: #dc3545; }
.stats-card-accent.blue { background-color: #007bff; }

.stats-card-content {
    padding: 24px;
    padding-left: 32px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-number.orange { color: #ff6b35; }
.stats-number.green { color: #28a745; }
.stats-number.red { color: #dc3545; }
.stats-number.blue { color: #007bff; }

.stats-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

.stats-info i {
    font-size: 1rem;
}

.stats-info i.orange { color: #ff6b35; }
.stats-info i.green { color: #28a745; }
.stats-info i.red { color: #dc3545; }
.stats-info i.blue { color: #007bff; }

/* Classes para números coloridos em cards menores */
.h4.green, .h4.orange, .h4.red, .h4.blue {
    font-weight: 600;
}

.h4.green { color: #28a745; }
.h4.orange { color: #ff6b35; }
.h4.red { color: #dc3545; }
.h4.blue { color: #007bff; }

/* ===== CARDS DE PONTUAÇÃO E RESUMO ===== */
.score-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    overflow: hidden;
}

.score-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.score-card .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
    padding: 16px 20px;
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.score-card .score-value {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin: 0;
}

.score-card .score-label {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.score-card .progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    overflow: hidden;
}

.score-card .progress-bar {
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.score-card .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.score-card .stat-item {
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.score-card .stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.score-card .stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Cards de resumo */
.summary-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    overflow: hidden;
}

.summary-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.summary-card .summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.summary-card .summary-item:last-child {
    border-bottom: none;
}

.summary-card .summary-label {
    color: #495057;
    font-weight: 500;
    font-size: 0.875rem;
}

.summary-card .summary-value {
    color: #007bff;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Cards de ranking */
.ranking-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    overflow: hidden;
}

.ranking-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.ranking-card .ranking-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.ranking-card .ranking-item:hover {
    background-color: #f8f9fa;
}

.ranking-card .ranking-item:last-child {
    border-bottom: none;
}

.ranking-card .ranking-position {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 12px;
}

.ranking-card .ranking-position.top-3 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #856404;
}

.ranking-card .ranking-info {
    flex: 1;
}

.ranking-card .ranking-name {
    font-weight: 600;
    color: #495057;
    font-size: 0.875rem;
    margin: 0;
}

.ranking-card .ranking-score {
    color: #6c757d;
    font-size: 0.75rem;
    margin: 0;
}

/* ===== TELA DE ENVIO DE DOCUMENTOS ===== */
.upload-card {
    background: white;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.upload-card:hover {
    border-color: #007bff;
    background-color: #f8f9ff;
}

.upload-card.dragover {
    border-color: #007bff;
    background-color: #e7f3ff;
    transform: scale(1.02);
}

.upload-card .upload-icon {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 16px;
}

.upload-card:hover .upload-icon {
    color: #007bff;
}

.upload-card .upload-text {
    color: #495057;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.upload-card .upload-subtext {
    color: #6c757d;
    font-size: 0.875rem;
}

.document-type-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.document-type-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.document-type-card.selected {
    border-color: #007bff;
    background-color: #f8f9ff;
}

.document-type-card .type-icon {
    font-size: 2rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.document-type-card:hover .type-icon,
.document-type-card.selected .type-icon {
    color: #007bff;
}

.document-type-card .type-name {
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
    margin-bottom: 8px;
}

.document-type-card .type-description {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.4;
}

.document-type-card .type-points {
    background: #e7f3ff;
    color: #007bff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 12px;
    display: inline-block;
}
