html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;    
}

@media (min-width: 992px) {
    .container {
        padding-left: 30px;
    }
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: aliceblue;
    padding-top: 4px;
    padding-bottom: 2px;
}

section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    section.loaded {
        opacity: 1;
        transform: translateY(0);
    }

@media(max-width: 768px) {
    section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.scholarship-application {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 80px;
    width: 100%;
    overflow: hidden;
}

.applicant-info {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
}

.app-management {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 80px;
    width: 100%;
    overflow: hidden;
    min-height: 80vh;
}

.app-management-container {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
}

.navbar-nav .nav-item > .nav-link:hover {
    color: #0099ff !important;
}

.navbar-nav .nav-link.btn-link:hover {
    color: #0099ff !important;
}

.navbar-nav .dropdown-menu > .nav-item {
    border-bottom: 1px solid #e6e6e6;
}

.navbar-nav .active {
    color: #0099ff !important;
    font-weight: 500;
}
