html, body {
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.cm-topbar {
    background-color: #333333;
    padding: 10px;
    display: flex;
    align-items: center;
}

.cm-top-logo {
    width: auto;
    max-width: 300px;
    max-height: 17px;
}

.main-content {
    flex: 1;
}

.page {
    margin: 10px 0;
}

.loader-screen {
    position: fixed;
    z-index: 5000;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ccc;
    border-top-color: #333;
    animation: spin 1s infinite linear;
}

body {
    background-color: #ececec;
}

.oweb_header {
    background-color: white;
    padding: 0;
}

.nav-link {
    color: #383838 !important;
}

.nav-link:hover {
    color: #037fff !important;
}

.navbar-toggler {
    color: #00e6ff;
}

.navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 30px;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*HOMEPAGE*/
#welcome {
    text-align: center;
    margin-bottom: 30px;
}

.home-container {
    display: flex;
    flex-direction: column;
}

.logo-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.logo-cont img {
    max-width: 100%;
    max-height: 80px;
}

.curruser-selected {
    background-size: 200% !important;
    background: linear-gradient(90deg, #00a1dd, #00d677, #00a1dd);
    border-radius: 5px;
    color: white !important;
    transition: 0.7s;
}

.curruser-selected:hover {
    background-position: 100%;
    color: white !important;
    transition: 0.7s;
}

@media (max-width: 576px) {
    .curruser-selected {
        background: initial !important;
        color: #15141a !important;
        transition: 0.15s;
    }
    
    .curruser-selected:hover {
        color: #037fff !important;
        transition: 0.15s;
    }
}