/* public/css/client-dashboard.css */

#client-dashboard {
    display: flex;
    min-height: calc(100vh - 70px); /* restar el header */
    margin: 0;
    padding: 0;
}

/* Sidebar */
#dashboard-sidebar {
    width: 220px;
    background: #111;
    color: #fff;
    padding: 20px 0;
    flex-shrink: 0;
    height: calc(100vh - 70px); /* altura total menos header */
    position: sticky;
    top: 70px; /* evita el margen arriba */
}

#dashboard-sidebar .sidebar-user {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #e63946;
}

#dashboard-sidebar .sidebar-user i {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

#dashboard-sidebar .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#dashboard-sidebar .sidebar-link {
    width: 100%;
    display: block;
    background: transparent;
    color: #fff;
    border: none;
    text-align: left;
    padding: 12px 20px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

#dashboard-sidebar .sidebar-link:hover,
#dashboard-sidebar .sidebar-link.active {
    background: #e63946;
    color: #fff;
}

/* Main content */
#dashboard-main {
    flex-grow: 1;
    padding: 30px;
    background: #f9f9f9;
    min-height: calc(100vh - 70px);
    overflow-y: auto;
}

#dashboard-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
