/*loading*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #191e22;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #2d2d30;
    border-top: 5px solid #41e8fd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.navbar {
    background-color: #191e22 !important;
}

.navbar-brand {
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #ffffff !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #a0a0a0 !important;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #41e8fd !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
    color: #41e8fd !important;
    text-decoration: underline;
    font-weight: 700;
}

.navbar-toggler {
    border: none !important;
    color: #a0a0a0 !important;
    font-size: 1.5rem;
    padding: 0;
    transition: color 0.3s ease;
}

.navbar-toggler:hover {
    color: #41e8fd !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.huge-space {
    margin-top: 70px;
    margin-bottom: 20px;
}


body {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 100px);
    max-width: none;

    margin: 50px;

    background-color: #191e22;
    border-radius: 20px;
    border: none;
    box-shadow: none;

    overflow-y: auto;
    overflow-x: hidden;

    color: #e6e6e6;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
    body {
        margin: 10px;
        min-height: calc(100vh - 20px);
    }
}

h1, h2, h3, h4, h5, .navbar-brand, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.container {
    padding-top: 20;
    padding-bottom: 20;
}

.text-teal {
    color: #41e8fd;
}

.btn-teal {
    background-color: #41e8fd;
    color: #1a1a1d;
    border: none;
    font-weight: 800;
}

.btn-teal:hover {
    color: #ffffff;
    border: none;
    font-weight: 800;
    transition: color 0.3s ease;
}

.btn-outline-teal {
    border: 2px solid #41e8fd;
    color: #41e8fd;
    font-weight: 800;
}

.btn-outline-teal:hover {
    color: #ffffff;
    font-weight: 800;
    transition: color 0.3s ease;
}

.no-decoration {
    text-decoration-line: none !important;
}

footer {
    margin-top: auto;
}
