﻿body {
    background-color: #efeff4;
}

.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 980px !important;
}

.navbar {
    background-color: #0051f8;
    margin-bottom: 2rem;
}

    .navbar .container {
        padding: 1rem;
    }

.logo {
    width: 100%;
    max-width: 300px;
}

.navbar h1 {
    color: white;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif;
    transform: translateY(3px);
}

    .navbar h1 span {
        color: #abe600;
    }

.table tbody td {
    vertical-align: middle;
}

.table thead th {
    color: var(--bs-secondary) !important;
}

.icon {
    vertical-align: 0;
}

#chat {
    height: 100px;
}

#timeline {
    overflow: auto;
    overflow-x: hidden;
}

    #timeline .dir {
        margin-left: 3rem;
    }

    #timeline .esq {
        margin-right: 3rem;
    }

    #timeline > dir {
        overflow: auto;
    }

    #timeline > div > p:last-child {
        margin-bottom: 0.25rem;
    }

    #timeline .table {
        --bs-table-color: white;
        --bs-table-bg: transparent;
    }

    #timeline a {
        color: white !important;
    }

.loader {
    display: none;
    float: left;
    border: 4px solid #bbb;
    border-top: 4px solid #0051f8;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

#counter {
    display: none;
    margin: 5px 0 0 10px;
}

.btn {
    font-family: 'Josefin Sans', sans-serif;
}

.btn.text-bg-primary:hover {
    opacity: 0.7;
}

.fs-6 {
    font-size: 0.9rem !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}