.client-sidebar {
    width: 240px;
    min-height: 100vh;
    background: #fff;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.client-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.client-sidebar-title {
    font-size: 18px;
    font-weight: bold;
}

/* NAV */
.client-sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 4px;
}

/* LINK */
.client-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.2s;
}

.client-sidebar-link:hover {
    background: #f5f5f5;
}

/* ATIVO */
.client-sidebar-link.active {
    background: #e8f0fe;
    color: #3483FA;
    font-weight: bold;
}

/* ICON */
.client-sidebar-icon {
    font-size: 16px;
}

/* LOGOUT */
.client-sidebar-link.logout {
    margin-top: auto;
    color: #c0392b;
}

.client-sidebar-link.logout:hover {
    background: #fdecea;
}

@media screen and (max-width: 764px){
    .client-sidebar{
        display: none;
    }
}