.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--sidebar-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    align-items: center;
}

.main-content {
    flex: 1 1 auto;
    overflow: auto;
    min-height: 0;
}