/* Main Application Styles - Mint-style Two-Pane Layout */
body {
    background: #0f172a;
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

#app {
    width: 100%;
    min-height: 100vh;
}

/* Two-pane shell layout */
.app-shell {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Main content area - right pane */
.main-content {
    flex: 1;
    margin-left: 240px;
    min-height: 100vh;
    background: #0f172a;
    transition: margin-left 0.25s ease;
    overflow-y: auto;
}

.main-content.sidebar-collapsed {
    margin-left: 68px;
}

#content-area {
    padding: 0;
    min-height: 100vh;
}

/* Loading state */
.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Page header styling */
.page-header {
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1rem;
    color: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-content {
        margin-left: 68px;
    }
    
    .main-content.sidebar-collapsed {
        margin-left: 68px;
    }
}