/* ADD CUSTOM CSS HERE */

#uploadedAvatar {
    object-fit: contain;
}

.app-brand-link {
    max-width: 145px;
}

.chatBtn i {
    color: #9c94f4;
    font-size: 120px;
}
.textColor {
    color: #000;
}
.dark-style .textColor {
    color: #fff;
}
.dark-style .chatBtn i {
    color: #b3bbdf;
}

.chat-history-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

a.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-future {
    background-color: #504448 !important;
    color: #ff9f43 !important;
}

a.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-today {
    background-color: #2e4b4f !important;
    color: #28c76f !important;
}

a.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end {
    background-color: #4d384b !important;
    color: #ea5455 !important;
}

.checklist {
    list-style: none; /* remove default bullets */
    padding: 0;
    margin: 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem; /* space for icon */
    margin-bottom: 0.5rem;
}

/* Add the check icon using pseudo-element */
.checklist li::before {
    content: "\f00c"; /* FontAwesome check icon unicode */
    font-family: "Font Awesome 5 Free"; /* Make sure FA5 is loaded */
    font-weight: 900; /* for solid icons */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-yellow); /* your color */
    font-size: 1rem;
}