body {
    margin: 0;
    background-color: rgb(13, 13, 13);
}

#notificationsDropdown::-webkit-scrollbar {
    background-color: rgba(var(--bs-dark-rgb), .5) !important;
    border-top-right-radius: 54px;
    border-bottom-right-radius: 54px;
    width: 8px;
}
#notificationsDropdown::-webkit-scrollbar-thumb {
    background-color: rgba(45, 45, 45, 0.5);
    border-radius: 64px;
    border: 4px solid transparent;
}

.dropdown-item:active {
    background-color: rgba(45, 45, 45, 0.33);
}

.secondary:hover {
    background-color: rgba(216, 216, 216, 0.1);
}

.dotted-bg {
    background-image:
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0;
}
.dotted-bg-left {
    background-image:
        radial-gradient(ellipse at left, transparent, rgb(13, 13, 13) 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
}
.dotted-bg-right {
    background-image:
        radial-gradient(ellipse at right, transparent, rgb(13, 13, 13) 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
}
.dotted-bg-top {
    background-image:
        radial-gradient(ellipse at top, transparent, rgb(13, 13, 13) 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
}
.dotted-bg-bottom {
    background-image:
        radial-gradient(ellipse at bottom, transparent, rgb(13, 13, 13) 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
}
.dotted-bg-center {
    background-image:
        radial-gradient(ellipse at center, transparent, rgb(13, 13, 13) 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
}
.dotted-bg-top-left {
    background-image:
        radial-gradient(ellipse at top left, transparent, rgb(13, 13, 13) 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
}
.dotted-bg-top-right {
    background-image:
        radial-gradient(ellipse at top right, transparent, rgb(13, 13, 13) 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
}
.dotted-bg-bottom-left {
    background-image:
        radial-gradient(ellipse at bottom left, transparent, rgb(13, 13, 13) 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
}
.dotted-bg-bottom-right {
    background-image:
        radial-gradient(ellipse at bottom right, transparent, rgb(13, 13, 13) 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
}

.dotted-bg-top-left-bottom-right {
    background-image:
        radial-gradient(ellipse at top left, rgb(13, 13, 13), transparent 80%),
        radial-gradient(ellipse at bottom right, rgb(13, 13, 13), transparent 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, cover, 40px 40px;
    background-position: center, center, 0 0;
}
.dotted-bg-top-right-bottom-left {
    background-image:
        radial-gradient(ellipse at top right, rgb(13, 13, 13), transparent 80%),
        radial-gradient(ellipse at bottom left, rgb(13, 13, 13), transparent 80%),
        radial-gradient(circle, rgba(199, 199, 199, 0.73) 0.5px, transparent 1px);
    background-size: cover, cover, 40px 40px;
    background-position: center, center, 0 0;
}


.window-heading {
    background-color: rgba(222, 226, 230, 0.03);
}

.notification:hover {
    background-color: rgba(45, 45, 45, 0.33);
    border-radius: 8px;
    cursor: pointer;
}

#serverSelector {
    border: solid 2px #242424;
    transition: 0.4s;
}

#serverSelector:hover {
    background-image:
        radial-gradient(ellipse at top left, transparent, rgb(13, 13, 13) 100%),
        radial-gradient(circle, #c60505ba 0.5px, transparent 1px);
    background-size: cover, 40px 40px;
    background-position: center, 0 0;
    border: solid 2px #872626;
}

.btn-check:checked + label.btn {
    background-color: rgba(216, 216, 216, 0.1);
}

.card {
    background-color: rgba(216, 216, 216, 0.02);
}

.card-header-light {
    background-color: rgba(216, 216, 216, 0.1);
    color: white;
}

.page-link {
    color: white;
}

.filter {
    color: gray;
    transition: 200ms;
}

.filter:hover {
    background-color: rgba(216, 216, 216, 0.1);
}