/* =====================================================
   GLPI 11 – Tema corporativo (Facil)
   Combina com logo azul / moderno
   ===================================================== */

/* --- MENU LATERAL --- */
aside.navbar-vertical {
    background-color: #0f1f33 !important;
    border-right: 1px solid #0b1624 !important;
}

/* Links */
aside.navbar-vertical .nav-link {
    color: #e5e7eb !important;
    font-weight: 500;
}

/* Hover */
aside.navbar-vertical .nav-link:hover {
    background-color: #162c46 !important;
    color: #ffffff !important;
}

/* Item ativo */
aside.navbar-vertical .nav-link.active {
    background-color: #1e88c9 !important;
    color: #ffffff !important;
}

/* Ícones */
aside.navbar-vertical .nav-link .icon {
    color: #67c7f0 !important;
}

/* --- TOPO (HEADER) --- */
header.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e7eb;
}

/* --- BOTÕES PRINCIPAIS --- */
.btn-primary {
    background-color: #1e88c9 !important;
    border-color: #1e88c9 !important;
}

.btn-primary:hover {
    background-color: #166fa3 !important;
    border-color: #166fa3 !important;
}

/* --- LINKS --- */
a {
    color: #1e88c9;
}

a:hover {
    color: #166fa3;
}

/* --- TABELAS --- */
.table thead th {
    background-color: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

/* --- CARDS --- */
.card {
    border-radius: 8px;
}

/* --- SCROLLBAR DISCRETA --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(30,136,201,.4);
    border-radius: 4px;
}


/* =====================================================
   Substituir COMPLETAMENTE o logo do GLPI
   ===================================================== */

/* Esconde SVG e texto do GLPI */
.navbar-brand svg,
.navbar-brand span {
    display: none !important;
}

/* Área do logo */
.navbar-brand {
    background-image: url("/pics/LogoFacil.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 140px auto; /* ajuste se necessário */
    width: 250px;
    height: 100px;
    padding: 0 !important;
}

/* =====================================================
   GLPI 11 – LOGIN – LOGO FÁCIL (MÉTODO DEFINITIVO)
   ===================================================== */

/* 1️⃣ Esconde COMPLETAMENTE o logo do GLPI */
.glpi-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* 2️⃣ Insere o logo da Fácil no container correto */
.page-anonymous .text-center .col-md::before {
    content: "";
    display: block;

    height: 300px;
    margin-bottom: 1.5rem;

    background-image: url("/pics/LogoFacil.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
