html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Pushes footer down */
}


.gate-btn-color {
    background-color: rgb(13, 110, 253);
    --bs-btn-border-color: rgb(13, 110, 253);
    color: white;
}

    .gate-btn-color:disabled {
        background-color: rgb(13, 110, 253) !important; /* Gray background */
        border-color: rgb(13, 110, 253) !important; /* Gray border */
        cursor: not-allowed !important;
        color: white;
        opacity: 1 !important;
    }


.btn-primary {
    background-color: #ABD037;
    --bs-btn-border-color: #ABD037;
    color: rgb(33, 37, 41);
}

    .btn-primary:hover {
        background-color: #6f8723;
        border-color: #6f8723;
    }

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    background-color: #6f8723;
    border-color: #6f8723;
}

.nav-link {
    color: white;
}

body {
    font-family: "Montserrat", sans-serif;
}

header {
    font-family: "Montserrat", sans-serif;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    background-color: #6f8723;
    border-color: #6f8723;
}

.form-control:focus {
    border-color: #6f8723;
    box-shadow: 0 0 0 .25rem rgba(111,135,35,.25);
}

.icon-link {
    text-decoration-color: rgba(171,208,55,1)
}

.divider {
    border-bottom: 1px solid black; /* Black line */
    margin-top: 10px; /* Adds space above the divider */
    margin-bottom: 10px; /* Adds space below the divider */
}

th {
   font-size: 10px;
}

@media (max-width: 768px) {
    
    td {
        font-size: 12px
    }

    .h3 {
        font-size: 16px
    }

    .h5 {
        font-size: 14px
    }

    .modal-open {
        font-size: 12px
    }

    .form-control {
        font-size: 10px;
    }
}