/* Resets and Base Styles */ * { box-sizing: border-box; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* Dashboard Layout */ .dashboard { display: flex; flex-direction: column; height: 100vh; overflow: hidden; /* Prevent body scroll */ } .dashboard-header { background: #2c3e50; color: white; padding: 0.75rem 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; } .dashboard-header h1 { margin: 0; font-size: 1.25rem; font-weight: 600; } .dashboard-content { display: flex; flex: 1; overflow: hidden; } .dashboard-sidebar { width: 300px; background: #f8f9fa; border-right: 1px solid #ddd; display: flex; flex-direction: column; overflow-y: auto; } .dashboard-main { flex: 1; padding: 2rem; overflow-y: auto; background: #fff; }