/* Default Reset */
body { margin: 0; font-family: sans-serif; background: #f8fafc; }

/* MODE 1: Centered (Home/Login) */
.centered-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* MODE 2: Dashboard (With Sidebar) */
.dashboard-layout {
    display: flex;
    flex-direction: row;
}

.dashboard-layout #sidebar {
    width: 250px;
    background: #1e293b;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: fixed;
}

.dashboard-layout #main-content {
    margin-left: 250px; /* Leave room for the sidebar */
    padding: 40px;
    flex-grow: 1;
}

/* Standard Container for both */
.container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}