#notification-button:hover {
    cursor: pointer;
}

#notification-button {
    position: relative;
    display: inline-block;
}

.notification-button::after {
    content: attr(data-badge);
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: red;
    color: white;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-weight: 800;
}

body {
    /* ORIGINAL BACKGROUND: #d7d7d7 */
    /*background: #B0B1AB;*/
    background: #f4f4f4;
}

.nav-link {
    color: var(--bs-primary);
}

.navbar-light .navbar-toggler {
    background-color: var(--bs-primary);
}

.nav-link:hover {
    color: var(--bs-primary);
}

.bg-light {
    background: var(--bs-primary) !important;
    color: #FFF !important;
}

.navbar-light .navbar-nav .nav-link, .navbar-light .navbar-brand {
    color: #FFF !important;
}

.btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    box-shadow: none;
}

a {
    color: var(--bs-primary);
}

a:hover {
    color: var(--bs-primary);
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.message-box .message-wrapper {
    width: 100%;
    display: flex;
}

.message-box .message {
    flex-direction: column;
    padding: 5px 13px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.message-box .message.sender {
    margin-left: auto;
    background: var(--bs-primary);
    color: #f4f4f4;
}

.message-box .message.receiver {
    background: #CCC;
}


#notification-modal {
    display: none;
    z-index: 9999;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    overflow: auto;
}
.btn-primary.active {
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
}
#notification-modal > .modal-content-notification {
    background-color: #fff;
    position: absolute;
    z-index: 9999;
    top: 72px;
    right: 10px;
    padding: 20px;
    width: 80%;
    max-width: 600px;
}

.tree:before {
    content: '	\2514';
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
    text-decoration: underline;
}

.card {
    -webkit-box-shadow: 10px 10px 19px -6px rgba(1, 87, 155, 0.49);
    -moz-box-shadow: 10px 10px 19px -6px rgba(1, 87, 155, 0.49);
    box-shadow: 10px 10px 19px -6px rgba(1, 87, 155, 0.49);
}

.modal-content-notification {
    -webkit-box-shadow: 10px 10px 19px -6px rgba(1, 87, 155, 0.49);
    -moz-box-shadow: 10px 10px 19px -6px rgba(1, 87, 155, 0.49);
    box-shadow: 10px 10px 19px -6px rgba(1, 87, 155, 0.49);
}

.chat-main-eye {
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    border-radius: 50px;
    font-size: 32px;
    text-align: center;
    color: white;
    bottom: 0;
    position: absolute;
    right: 0;
}

.chat-main-eye:hover {
    background: var(--bs-primary);
    cursor: pointer;
}

.chat-item {
    display: inline-block;
}

.chat-item.card {
    right: 60px;
}

.chat-form:only-child {
    display: inline-block;
}

.chat-form input {
    outline: none;
    max-width: 160px;
    background: none;
    border: none;
    height: 30px;
}

.chat-form input:focus-visible {
    border: none;
    outline: none;
}

.chat-form .chat-input-wrapper {
    display: inline-block;
    padding: 5px;
    border-radius: 20px;
    border: 1px solid black;
}

.chat-form button {
    display: inline-block;
    background: #CCC;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 20px;
}

.chat-form button:hover {
    background: var(--bs-primary);
    color: white;
}
.list-group-item.active > a {
    color: white;
}