html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    overflow-y: scroll;
    background-color: #ced4da;
}

[v-cloak] {
    display: none;
}


/*.custom-modal{
    height:475px!important;
    overflow-y:auto!important;
}
*/


@keyframes fadeInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-500px); /* Move the dialog up slightly */
    }

    100% {
        opacity: 1;
        transform: translateY(0); /* Move it back to its original position */
    }
}

.fade-in-top .modal-dialog {
    animation: fadeInFromTop 1s ease; /* Adjust duration as needed */
}


@keyframes fadeoutFromTop {
    0% {
        opacity: 1;
        transform: translateY(0px); /* Move the dialog up slightly */
    }

    100% {
        opacity: 0;
        transform: translateY(-500px); /* Move it back to its original position */
    }
}

.fade-out-top {
    animation: fadeoutFromTop 1s ease; /* Adjust duration as needed */
}


.quill-editor {
    height: 100%; /* Adjust this value to your desired height */
    width: 100%; /* This will make the editor take the full width of its container */
}


.card-fixed-height {
    height: 450px !important;
    overflow-y: auto;
}


/*.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;*/
/*background-color: rgba(255, 255, 255, 0.7);*/ /* Slightly transparent background */
/*z-index: 9999;*/ /* Ensure it's above other content */
/*display: flex;
justify-content: center;
align-items: center;
}*/

.title {
    color: rgb(10, 50, 84);
}

footer {
    border-top: 4px solid #EAAA21;
    background-color: #ffffff;
}

nav {
    border-bottom: 4px solid #EAAA21;
}

.card-background {
    background-color: #FAFAFA;
    color: #0A3254;
    border: 1px solid #708090;
    border-radius: .25rem;
}

.admin-access-box {
    border: 1px solid #ccc; /* Light gray border */
    padding: 12px;
    border-radius: 6px;
    background-color: #f9f9f9; /* Very light gray background */
    margin-top: 10px;
}

.admin-label {
    font-weight: 500;
    font-size: 14px;
    color: #555; /* Medium gray text */
    margin-bottom: 6px;
}

.hide {
    display: none;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f3d2b;
    padding: 1rem 2rem;
    color: black;
}

    .navbar a {
        color: black;
        text-decoration: none;
        margin-left: 1.5rem;
        font-family: 'Arial', sans-serif;
        font-weight: bold;
    }


.footer {
    padding: 0rem 0;
    background-color: #f8f9fa;
    word-wrap: break-word; /* ensures long text wraps */
    overflow-wrap: break-word; /* modern equivalent */
}

    .footer a {
        text-decoration: underline;
    }

@media (max-width: 576px) {
    .footer {
        font-size: 0.8rem; /* smaller text on very small screens */
    }
}

.navbar-brand img {
    max-height: 175px; /* keep the height under control */
    max-width: 100%; /* never exceed the container width */
    height: auto; /* scale height automatically */
    width: auto; /* keep aspect ratio */
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 120px; /* reduce height on mobile */
        width: auto;
        height: auto;
    }
}
/*.btn-primary {
    background-color: #1f3d5c !important;
    border-color: #1f3d5c !important;
    color: #ffffff !important;
}

.bg-primary {
    background-color: #1f3d5c !important;
    border-color: #1f3d5c !important;
    color: #ffffff !important;
}


.page-item.active .page-link {
    background-color: #1f3d5c !important;
    border-color: #1f3d5c !important;
    color: #ffffff !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #1f3d5c !important;
    border-color: #1f3d5c !important;
    color: #ffffff !important;
}

.nav-link {
    color: #1f3d5c !important;
}
.btn-outline-primary {
    border-color: #1f3d5c !important;
}

a {
    color: #1f3d5c !important;
}


*/
