/* MAIN STYLESHEET - ONLY SIDEBAR AND LAYOUT */
/* DO NOT ADD PAGE-SPECIFIC STYLES HERE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f7;
}

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

/* SIDEBAR ONLY */
.sidebar {
    width: 240px;
    background: white;
    border-right: 1px solid #e9ecef;
    position: fixed;
    height: 100vh;
}

.logo {
    padding: 24px 20px;
    border-bottom: 1px solid #e9ecef;
}

.logo h1 {
    color: #7c68d6;
    font-size: 24px;
}

.nav-links {
    padding: 12px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    font-size: 14px;
}

.nav-link:hover {
    background: #f8f9fa;
}

.nav-link.active {
    background: #e7e3ff;
    color: #7c68d6;
    font-weight: 600;
}

/* MAIN CONTENT AREA ONLY */
.main-content {
    margin-left: 240px;
    flex: 1;
    padding: 30px;
}
