:root {
    --discord-burple: #5865F2;
    --discord-background: #2F3136;
}

body {
    background: var(--discord-background);
    color:white;
}

#login-button {
    background-color: var(--discord-burple);
    color: white;
}

.loading-overlay {
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    opacity: .5;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 40vh;
    left: 0;
    right: 0;
    margin: auto;
}

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

button.btn-discord,
a.btn-discord {
    background: var(--discord-burple);
    color: white;
}

i.bi {
    margin-right: 5px;
}

.explainer-text {
    font-size: 0.75rem;
    font-style: italic;
}

.pagination > li > a {
    background-color: #6c757d;
    color: white;
    border: solid 1px #51585e;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
    color: white;
    background-color: #6c757d;
    border-color: #51585e;
}

.pagination > .disabled > a {
    color: white;
    background-color: #6c757d !important;
    border: solid 1px #51585e !important;
}

.pagination > .active > a {
    color: white;
    background-color: var(--discord-burple) !important;
    border: solid 1px #51585e !important;
}

.pagination > .disabled > a:hover {
    background-color: #5c636a !important;
    border: solid 1px #51585e;
}

.pagination > .active > a:hover,
.pagination > li > a:hover {
    color: white;
    background-color: #5c636a !important;
    border: solid 1px #51585e !important;
}

