/* General styles */
body {
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
}

/* Main wrapper for sidebar and content */
.wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh; /* Full viewport height */
}

/* Sidebar (Left Navigation Menu) */
.sidebar {
    width: 250px;
    background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%); /* Updated gradient */
    padding-top: 20px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
}

.sidebar .nav-link {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 10px 0;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.sidebar .nav-link:hover {
    background-color: #e63946; /* Red accent for hover effect */
    border-radius: 5px;
}

.sidebar .navbar-brand {
    text-align: center;
}

.sidebar .navbar-brand img {
    max-width: 80%;
}

/* Content section */
.content-area {
    margin-left: 250px;
    flex-grow: 1;
    padding: 20px;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Footer styles */
footer {
    background-color: transparent; /* Remove background color */
    color: #000000; /* Change text color to black */
    padding: 15px 0;
    text-align: center;
    width: 100%;
    margin-top: auto; /* Push footer to the bottom */
}

footer p {
    margin: 0;
    font-size: 0.9rem; /* Slightly smaller text for the notice */
    color: #6c757d; /* Subtle gray color for the notice text */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .content-area {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }

    footer {
        width: 100%;
    }
}
