.layout-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background-color: #f8f9fa;
    border-right: 1px solid #e9ecef;
    padding: 1rem;
    flex-shrink: 0;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
}

.sidebar-projects {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-project {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.sidebar-project:hover {
    background-color: #e9ecef;
}

.sidebar-project.active {
    background-color: #e9ecef;
}

.sidebar-project a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-project-thumb {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.sidebar-project-info {
    flex: 1;
}

.sidebar-project-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sidebar-project-categories {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.sidebar-project-category {
    background-color: #e2e8f0;
    padding: 0.125rem 0.375rem;
    border-radius: 1rem;
    color: #4a5568;
}

.main-content {
    flex: 1;
    padding: 2rem;
    max-width: calc(100% - 250px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    
    .main-content {
        max-width: 100%;
    }
    
    .sidebar.show {
        display: block;
        position: fixed;
        z-index: 1000;
    }
    
    .sidebar-toggle {
        display: block;
    }
}
