/* ===== FONTES E CORES GLOBAIS ===== */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

.bg-light-gray {
    background-color: #f5f7fa;
}

/* ===== CONFIGURAÇÕES DO NAVBAR SUPERIOR (header.php) ===== */
.top-navbar {
    height: 70px;
    padding-top: 0;
    padding-bottom: 0;
}

/* Cor logo principal */
.navbar-brand {
    color: #4ed4f5 !important;
    font-size: 1.4rem !important;
}

/* Links do menu esquerdo (Início, Álbuns, Eventos...) */
.menu-esquerdo .nav-link {
    color: #555;
    font-weight: 500;
    padding: 23.5px 15px !important;
    /* Altura exata para preencher o navbar */
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
}

.menu-esquerdo .nav-link:hover {
    color: #333;
}

/* Estilo ativo (Aba "Eventos" selecionada com barra azul embaixo) */
.menu-esquerdo .nav-link.active {
    color: #4ed4f5 !important;
    border-bottom: 3px solid #4ed4f5;
}

/* Dropdown styling geral */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
}

.dropdown-item {
    padding: 8px 20px;
    color: #555;
    font-size: 0.95rem;
}

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

.active-text-info {
    color: #4ed4f5 !important;
}

/* Botões do lado Direito (Valores financeiros) */
.btn-financeiro {
    background-color: #45c4f5 !important;
    /* Azul ciano */
    border: none;
    color: white !important;
    font-size: 0.85rem;
    height: 35px;
    display: inline-flex;
    align-items: center;
}

.btn-financeiro:hover {
    background-color: #3ab1df !important;
}

/* Divisor de menu (|) */
.vertical-divider {
    width: 1px;
    height: 25px;
    background-color: #e0e0e0;
}

/* Ícones de ação (sino, chat, pergunta) */
.icone-acao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.icone-acao-chat {
    display: flex;
    width: 94px;
    height: 35px;
    border-radius: 10px;
    border: 1px solid #ccc;
    transition: background-color 0.2s;
    margin-right: 30px;
    font-size: 15px;
    text-decoration: none;
    color: #292c30;
    align-items: center;
    justify-content: space-evenly;
}


.icone-acao:hover,
.icone-acao-chat:hover {
    background-color: #f0f0f0;
}

/* Avatar circular do usuário com a câmera */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3d8bfd;
    /* Azul avatar */
}

/* ===== CONFIGURAÇÕES DO CORPO DO DASHBOARD (index.php) ===== */
.btn-adicionar {
    background-color: #3d8bfd !important;
    /* Azul padrão botao adicionar */
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
}

.btn-adicionar:hover {
    background-color: #3275d8 !important;
}

/* O quadro branco grande que domina a parte central do painel */
.card-conteudo {
    border-radius: 8px;
}

/* ===== CONFIGURAÇÕES DA TELA DE LOGIN (login.php) ===== */
.login-wrapper {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 15px;
}

/* Card estilo Glassmorphism */
.login-card {
    border: none;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* Retirar borda central para input parecem contínuos */
.login-card .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #6c757d;
}

.login-card .form-control {
    border-left: none;
}

.login-card .form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.login-card .input-group:focus-within {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-radius: 0.375rem;
}

.login-card .input-group:focus-within .input-group-text,
.login-card .input-group:focus-within .form-control {
    border-color: #86b7fe;
}