body
{
    background-color: #fbfcfe;
}

.custom-title {
    font-family: 'Poppins', sans-serif; 
    font-weight: 700; 
    font-size: 30px; 
    line-height: 1; 
    letter-spacing: 0; 
    text-transform: uppercase;
}

.custom-container{
    box-shadow: 0px 4px 4px 0px #00000040;
    width: 70%;
    height: 70%;
    background-color: #ffffff;
}

.navbar-custom {
    border-bottom: 2px solid #222222;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
}

.mini-container {
    width: 75%;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    background-color: rgba(245, 245, 245, 0.203);
    border: 1px solid #ffffff89;
    position: relative;
    border-radius: 20px;
}

/* Texto posicionado no canto esquerdo */
.custom-text {
    width: 60%;
    text-align: left;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-top: 5px;
    font-family: 'Poppins', sans-serif; 
    font-weight: 700;
    font-size: 24px;
    line-height: 46px;
    letter-spacing: 0%;

}

/* Logo alinhada ao lado esquerdo, acima da modelo */
.logo {
    position: relative;
    z-index: 2;
    margin-left: 20px;
}

/* Modelo fixo na base do mini-container, saindo parcialmente para fora */
.img-modelo {
    position: absolute;
    bottom: 0px; /* Controla o quanto a imagem sai do container */
    right: -100px;  /* Controla a sobreposição para a direita */
    width: 160%;   /* Ajuste do tamanho */
    max-width: none;
    z-index: 1;    /* Garante que fique atrás da logo */
}

/* Remover no mobile */
@media (max-width: 768px) {
    .col-md-6 {
        display: none;
    }
}


/* Estilizando os inputs */
.custom-input {
    background: #5CA43A33; /* Verde translúcido */
    border: none;
    padding: 10px;
    font-size: 16px;
    color: #333;
    width: 85%;
}

.custom-input::placeholder {
    color: #333; /* Cor do placeholder */
}

/* Ícones */
.input-group-text {
    background: #5CA43A;
    color: white;
    border: none;
}

/* Layout Admin */
.admin-container {
    display: flex;
    min-height: calc(100vh - 80px);
    background-color: #fbfcfe;
}

/* Sidebar Minimalista */
.sidebar-minimal {
    width: 280px;
    background-color: #fbfcfe; /* Mesmo fundo que o body */
    border-right: 1px solid #000000; /* Borda sutil */
    transition: all 0.3s;
    position: relative;
    z-index: 100;
    padding: 15px 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #000000;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icon {
    font-size: 2.5rem;
    color: #5CA43A; /* Mantendo o destaque verde */
}

.user-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
    color: #222; /* Texto escuro */
}

.user-role {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #666; /* Texto mais suave */
}

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

.menu-item {
    padding: 12px 20px;
    margin: 5px 15px;
    border-radius: 6px;
    transition: all 0.3s;
}

.menu-item a {
    color: #555; /* Cor mais suave que preto puro */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.menu-item i {
    font-size: 1.2rem;
    color: #5CA43A; /* Ícones verdes */
}

.menu-item:hover {
    background-color: #f0f0f0;
}

.menu-item.active {
    background-color: #e8f4e1; /* Fundo verde muito claro */
}

.menu-item.active a {
    color: #5CA43A; /* Texto verde para item ativo */
    font-weight: 600;
}

.menu-item.logout {
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.menu-item.logout a {
    color: #e74c3c; /* Vermelho para logout */
}

.menu-item.logout:hover {
    background-color: #fdecea; /* Fundo vermelho muito claro */
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 30px;
    background-color: #fbfcfe;
}

.content-header {
    margin-bottom: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    .sidebar-minimal {
        width: 80px;
        overflow: hidden;
        padding: 10px 0;
    }
    
    .sidebar-header {
        padding: 15px 10px;
    }
    
    .user-info {
        flex-direction: column;
        text-align: center;
    }
    
    .user-name, .user-role {
        display: none;
    }
    
    .menu-item span {
        display: none;
    }
    
    .menu-item {
        text-align: center;
        padding: 15px 10px;
        margin: 5px 5px;
    }
    
    .menu-item i {
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    /* Adicione no final do arquivo style.css */

/* Estilos para Modais */
.modal-backdrop {
    z-index: 1040 !important;
}

.modal {
    z-index: 1050 !important;
    display: block !important;
    opacity: 1 !important;
    background-color: rgba(0,0,0,0.5);
}

.modal-dialog {
    margin-top: 100px;
}

.modal-content {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Ajustes específicos para o modal de resultados */
#modalResultadosContent .card {
    margin-bottom: 15px;
}

#modalResultadosContent .card-body {
    padding: 1.25rem;
}

/* Garante que o modal fique visível */
.modal.fade.show {
    opacity: 1;
    pointer-events: auto;
}

}