/* Geral e Background */
body { 
    background-color: #f0f4f5; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: #444;
}

#wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

/* Sidebar - Agora com o Verde Petróleo da Novoserv */
#sidebar {
    min-width: 280px;
    max-width: 280px;
    background: #00545d; /* Cor principal do logo */
    color: #fff;
    transition: all 0.3s;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
}

.sidebar-header {
    padding: 40px 25px;
    background: rgba(0,0,0,0.15);
}

.client-name { 
    font-weight: 700; 
    letter-spacing: 1px; 
    text-transform: uppercase;
    border-left: 4px solid #c6d817; /* Verde limão do logo */
    padding-left: 15px;
    font-size: 0.9rem;
}

#sidebar ul.components {
    padding: 30px 0;
    flex-grow: 1;
}

#sidebar ul li a {
    padding: 15px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s;
}

#sidebar ul li a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

#sidebar ul li a:hover, #sidebar ul li.active > a {
    color: #fff;
    background: rgba(198, 216, 23, 0.15); /* Feedback visual com a cor destaque */
    border-right: 4px solid #c6d817;
}

/* Área de Conteúdo */
#content {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.text-dark-blue { 
    color: #00545d; 
    font-weight: 800; 
}

.navbar-logo-top {
    height: 40px;
    /* Removido o filtro grayscale para o logo aparecer colorido no topo */
}

.welcome-banner h2 {
    color: #00545d;
    font-weight: 800;
}

/* Cards de Links Ajustados */
.sistema-link-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    height: 100%;
}

.sistema-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 84, 93, 0.1);
    border-color: #c6d817;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #e9f1f2;
    color: #00545d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 15px;
    flex-shrink: 0;
    transition: 0.3s;
}

.sistema-link-card:hover .card-icon {
    background: #c6d817;
    color: #00545d; /* Ícone escuro sobre fundo claro no hover */
}

.card-title {
    display: block;
    font-weight: 700;
    color: #00545d;
    font-size: 1.05rem;
    line-height: 1.2;
}

/* Rodapé */
.main-footer {
    margin-top: auto;
    padding: 20px 30px;
    background: #fff;
    border-top: 1px solid #e0e6e7;
    color: #778899;
    font-size: 0.8rem;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    #sidebar { min-width: 80px; max-width: 80px; }
    .client-name, #sidebar ul li a span { display: none; }
    #sidebar ul li a i { margin-right: 0; font-size: 1.2rem; }
}