46 lines
847 B
CSS
46 lines
847 B
CSS
/* Basic layout styles */
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
background-color: var(--dark-bg);
|
|
color: var(--text-color);
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body.with-sidebar {
|
|
display: flex;
|
|
}
|
|
|
|
.main-content-area {
|
|
flex: 1;
|
|
min-width: 0; /* Prevents flex item from overflowing */
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#main-content {
|
|
flex: 1;
|
|
padding: 1rem;
|
|
overflow-y: auto;
|
|
scrollbar-width: none; /* Firefox */
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
}
|
|
|
|
#main-content::-webkit-scrollbar {
|
|
display: none; /* Chrome, Safari and Opera */
|
|
}
|
|
|
|
#main-content h1 {
|
|
color: var(--primary-red);
|
|
font-size: 2.5em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
#main-content p {
|
|
line-height: 1.6;
|
|
color: var(--text-muted);
|
|
margin-bottom: 1.5em;
|
|
}
|