/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background for contrast */
    padding-top: 60px; /* Adjust to the height of the fixed header */
}

/* Header Styles */
.header {
    background-color: #fff;
    color: #000;
    padding: 15px 0;
    border-bottom: 1px solid #ddd; /* Subtle border under the header */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure the header stays on top */
}

.header .logo {
    width: 35rem;
    height: 5rem;
}

.header a {
    color: #000;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.header a:hover {
    color: #0056b3; /* Highlight color on hover */
    text-decoration: underline;
}
.content-info{
    margin-top: 3.5rem; 
    margin-bottom: 3.5rem;
}
/* Sidebar Styles */
.sidebar {
    background-color: #3abfbdbd;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    height: 100%; /* Full height of the container */
}

.sidebar h5 {
    margin-top: 0;
    background: turquoise;
    margin-bottom: 20px;
    color: white;
    font-size: 1.25rem;
    padding: 1rem;
    font-weight: bold;
}

.sidebar a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 10px; /* Space between items */
    font-size: 1rem;
}

.sidebar a:hover {
    background-color: #9B5C5C; /* Slightly different color on hover */
    color: #FFFF8A;
}

.sidebar a.active {
    background-color: #9B5C5C;
    color: #FFFF8A;
    font-weight: bold;
    border-left: 4px solid #FFFF8A; /* Highlight active link */
}

/* Content Styles */
.content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for content box */
}

.content ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.content li {
    margin-bottom: 10px;
}

.content-link {
    color: #007bff;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1rem;
}

.content-link:hover {
    background-color: #e9ecef; /* Light background for hover effect */
    color: #0056b3;
}

.content-link.active {
    background-color: #e9ecef;
    color: #0056b3;
    font-weight: bold;
}

/* Footer Styles */
.footer {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd; /* Subtle border on top of the footer */
    position: fixed;
    width: 100%;
    bottom: 0;
}

.footer p {
    margin: 0;
    color: #000;
    font-weight: bold;
}
