/* Shared Sidebar Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.page-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.sidebar {
    width: 200px;
    background: white;
    height: 100vh;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: relative;
}

.sidebar-item {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.875rem;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}

.sidebar-item:hover {
    background: #f9fafb;
    color: #111827;
}

.sidebar-item.active {
    background: #fee2e2;
    color: #dc2626;
    border-left: 3px solid #dc2626;
}

.main-content {
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin-left: 0;
}

/* Ensure consistent layout */
.h-screen {
    height: 100vh;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}