/* Reset and base styles */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    display: flex;
    min-height: 100vh;
}
ul {
    list-style: none;
}

/* Container and layout */
.container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.sidebar {
    background-color: #7c838b;
    color: white;
    padding: 20px;
    min-height: 100vh;
}

.left-sidebar {
    width: 20%;
}

.main-content {
    flex: 1;
    background: #c6bfbf;
    padding: 20px;
    border-left: 2px solid #007bff;
}

/* Header styles */
header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #007bff;
}

/* Enhance sidebar navigation aesthetics */
.sidebar {
    background-color: #0255a3; /* Darker shade of blue for more professional look */
    color: white;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Centers the content vertically */
}

.sidebar h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
    text-align: center; /* Center the section heading */
    color: #e0e0e0; /* Lighter gray for a subtle contrast */
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin: 10px 0; /* Add more vertical space between items */
}

.sidebar ul li a {
    display: block; /* Makes the link fill the entire list item */
    text-decoration: none;
    color: white;
    padding: 10px 15px; /* Add padding for better touch */
    font-size: 1.05em; /* Slightly larger text for better readability */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
}

.sidebar ul li a:hover, .sidebar ul li a.active {
    background-color: #0370d9; /* Lighter blue for hover/active state */
    color: #ffffff; /* Keep text color white for better contrast */
}

/* Optional: Adding a small icon next to each link can enhance visibility
.sidebar ul li a::before {
    content: "";
    display: inline-block; */
    /* width: 20px; Adjust width accordingly */
    /* height: 20px; Adjust height accordingly */
    /* background-image: url('icon-path.png'); Replace with actual path to your icon
    background-size: contain;
    background-repeat: no-repeat; */
    /* margin-right: 10px; Space between icon and text */
    /* vertical-align: middle; Align icon with text */
/* } */


/* Main content area */
main {
    margin-top: 20px;
}

/* Section styles */
section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    border-top: 2px solid #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        min-height: auto;
    }
    .main-content {
        border-left: none;
    }
}

@media (max-width: 480px) {
    .sidebar {
        padding: 10px;
    }
    header, footer {
        padding: 10px;
    }
}
