<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Modify the navigation bar background color */


.navbar-custom {
    background-color: #cfd5f8;
}

.mybutton {
    border-radius: 5px !important;
    background-color: #cfd5f8 !important;
}

.clickable {
    cursor: pointer;
}

.loader {
    margin-top: 0px;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #cfd5f8;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.move-left {
    width: auto;
}</pre></body></html>