body, html {
    height: 100%;
    margin: 0;
    font-family: 'Cabin', sans-serif;
}

/* Custom Navbar Styling */
.custom-navbar {
    background-color: #1b646c;
    font-family: 'Cabin', sans-serif;
    color: #fff;
    height: 80px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 45px;
    border-bottom: #9fcd75 solid 8px;
}

.custom-navbar .navbar-nav .nav-link {
    color: #fff;
    font-family: 'Cabin', sans-serif;
    font-size: 18px;
    margin-right: 15px;
}

.custom-navbar .navbar-nav .nav-link:hover {
    background-color: #9fcd75;
    font-family: 'Cabin', sans-serif;
    color: #fff;
    border-radius: 5px;
}

.custom-navbar .navbar-brand {
    color: #fff;
    font-size: 18px;
}

.custom-navbar .dropdown-menu {
    background-color: #1b646c;
    font-family: 'Cabin', sans-serif;
    color: #fff;
    border: #1b646c solid 1px;
    border-radius: 0;
}

.custom-navbar .dropdown-item {
    color: #fff;
    font-family: 'Cabin', sans-serif;
}

.navbar-brand {
    font-size: 26px !important;
    font-family: 'Cabin', sans-serif;
}

.custom-navbar .dropdown-item:hover {
    background-color: #9fcd75;
    color: #fff;
}

/* Custom CSS for Submenu */
.dropdown-menu li {
    position: relative;
}
.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
}
.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

.btn-primary {
    color: #fff;
    background-color: #9fcd75;
    border: #9fcd75 solid 1px;
}

.btn-primary:hover {
    background-color: #319b6b;
    color: #fff;
    border: #319b6b solid 1px;
}

/* Style buttons that lead to detail pages */
.btn-ghost-grey {
    background: transparent;
    border: 1px solid #333;
    color: #333;
    transition: all 0.3s ease;
}

.btn-ghost-grey:hover {
    background: #9fcd75;
    border-color: #9fcd75;
    color: #fff;
}

/* Other styles */
.bg {
    /* The image used */
    background-image: url("../images/login-background.jpeg");

    /* Full height */
    height: 100vh;  /* Ensure it takes full viewport height */
    width: 100vw;  /* Ensure it takes full viewport width */
    position: absolute;  /* Ensure it covers the entire page */
    top: 0;
    left: 0;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;  /* Full viewport height */
    position: relative;  /* Ensure it's above the background */
}

.login-form {
    background: white;
    padding: 30px;  /* Increase padding */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;  /* Increase max-width */
    z-index: 2;  /* Ensure it stays above the background */
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.login-logo img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.login-title {
    text-align: center;
    margin-bottom: 10px;
    color: #696a6d;
}

/* Custom style for expanded accordion background */
/*.accordion-collapse.show {*/
/*    background-color: #9fcd75 !important;*/
/*}*/