/* Apply custom styles to the body */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fa;
}

/* Style the academic navbar */
.navbar {
    background-color: #343a40;
}

.navbar a {
    color: #ffffff !important;
}

/* Style the sidebar */
.sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    background-color: #007bff; /* Change the background color */
    color: #333; /* Change text color */
    padding: 20px 10px;
    border-right: 1px solid #e1e1e1;
}

.sidebar h6 {
    font-size: 16px;
    font-weight: bold; /* Emphasize section headings */
    color: #ffffff; /* Change text color */
    margin-top: 20px;
}

.sidebar .nav-link {
    color: #333 !important; /* Change text color and make links more visible */
}

/* Highlighted background for sidebar links */
.sidebar .nav-link.active {
    background-color: #E3EEEF; /* Change background color for active link */
}

/* Change background color when hovering over a link */
.sidebar .nav-link:hover {
    background-color: #E3EEEF;
    color: #333;
}

/* Style the main content */
.main-content {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

/* Style the Gradio API section */
.gradio-api {
    margin-top: 20px;
}

.gradio-api .card {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

/* Style the footer
.footer {
    background-color: #343a40; /* Darker background color
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}
 */