
    body{
        /* margin-top: 4%; */
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    #redoc{
        flex: 1;
        margin-top: 4%;
        overflow-y: auto;
        box-sizing: border-box;
        transition: margin-top 0.3s ease;
    }
            /* Navbar Styling */
/*.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(2, 1, 1, 1); 
    color: rgba(79, 168, 68, 1); 
    position: relative;
}*/

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(2, 1, 1, 1); /* Dark background */
    color: rgba(79, 168, 68, 1); /* Green text */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
} 


.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: -10%;
}

.navbar-logo {
    width: 50%;
    height: 50%;
}

.navbar-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}


.navbar-link {
    text-decoration: none;
    /* color: rgba(79, 168, 68, 1); */
    color: white;
    font-size: 0.9rem;
}

.navbar-link:hover {
    text-decoration: underline;
    color: rgba(79, 168, 68, 1);
}

.navbar-link.active {
    text-decoration: underline;
    color: rgba(79, 168, 68, 1);
}

.navbar-signin {
    background-color: rgba(79, 168, 68, 1); /* Green button */
    color: white;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 0.9rem;
}

.navbar-signin:hover {
    background-color: rgba(2, 1, 1, 1); /* Darker background */
    color: rgba(79, 168, 68, 1); /* Green text */
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(2, 1, 1, 1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    min-width: 150px; /* Set a minimum width */
    white-space: nowrap; /* Prevent text wrapping */
}

.dropdown-link {
    /* color: rgba(79, 168, 68, 1); */
    color: white;
    text-decoration: none;
    padding: 5px 10px; /* Add padding for better spacing */
}

.dropdown-link:hover {
    text-decoration: underline;
}

/* Beautified Dropdown Toggle Button */
.dropdown-toggle {
    background-color: rgba(79, 168, 68, 1); /* Green button */
    color: white;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
}

/* Hover and Focus Effects */
.dropdown-toggle:hover {
    background-color: rgba(63, 143, 54, 1); /* Slightly darker green */
    transform: scale(1.05); /* Slight zoom effect */
}

.dropdown-toggle:focus {
    outline: 2px solid rgba(63, 143, 54, 1); /* Focus ring for accessibility */
    outline-offset: 2px; /* Offset for better visibility */
}



/* Hidden Class for Toggling */
.hidden {
    display: none;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    position: absolute;
    right: 20px;
    top: 15px;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: rgba(79, 168, 68, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(2, 1, 1, 1);
        padding: 10px 20px;
    }

    .navbar-links.hidden {
        display: none;
    }

    .navbar-links:not(.hidden) {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        padding: 0;
        border-radius: 0;
    }
}

@media (min-width: 769px) {
    .navbar {
        flex-wrap: nowrap;
    }

    .navbar-links {
        display: flex;
        margin-left: auto;
        position: static;
    }

    .hamburger {
        display: none;
    }
}


