/* Reset margins and set full height */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #242424;
    color: #ffffff;
    font-family: ui-sans-serif, -apple-system, system-ui, sans-serif;
    font-size: 14px;
}

/* Full page layout container */
.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Sidebar styling */
.sidebar {
    width: 220px;
    background-color: #1e1e1e;
    padding: 1rem;
    height: 100vh;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.sidebar h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.sidebar a {
    color: #ffffffcc;
    text-decoration: none;
    margin-bottom: 1rem;
    display: block;
    font-size: 14px;
}

.sidebar a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Logout form at bottom of sidebar */
.sidebar form {
    margin-top: auto;
}

/* Main content area */
.main-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Headings */
h1, h2 {
    color: #fff;
    font-size: 1.25rem;
}

/* Forms */
form {
    margin-top: 1rem;
}

/* Inputs and selects */
input, select {
    margin: 0.2rem 0 1rem 0;
    padding: 0.4rem;
    background-color: #333;
    color: white;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 14px;
}

/* Buttons */
button {
    background-color: #1a1a1a;
    color: white;
    border: 1px solid transparent;
    padding: 0.6em 1.2em;
    margin-right: 0.5em;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    border-color: #646cff;
}
