#calendar > div.fc-header-toolbar.fc-toolbar.fc-toolbar-ltr {
    flex-wrap: wrap;
    font-size: 12px;
}

.cursor-pointer {
    cursor: pointer;
}


.my-appointment-card {
    max-width: 350px;
    min-width: 325px;
}

.my-appointment-card-wrapper {
    padding: 2px;
}

:root {
    --easybook-main-colour: rgb(55, 81, 126);
    --easybook-main-colour-alpha: rgb(55, 81, 126, 0.9); /* Seed color */
    --bs-primary-rgb: 55, 81, 126;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
}

.full-width {
    width: 100%;
}

#header .logo {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: white;
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    height: 40px;
    align-content: center;
}

:root {
    --profile-img-size: 100px;
}

img.profile-img {
    width: var(--profile-img-size);
    height: var(--profile-img-size);
    object-fit: cover;
    border-radius: 50%; /* Equivalent to rounded-circle */
}

.card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 0.75rem;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    }

.list-group-item {
    transition: background-color 0.2s;
}

.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
    border-radius: 0.5rem;
}

.alert-danger {
    background-color: #fff5f5;
    border-color: #ffe3e3;
}

.cursor-pointer {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-light,
.btn-outline-dark {
    background-color: transparent !important;
    background-image: none !important;
}

/* Only active buttons show background */
.btn.active {
    background-color: var(--bs-btn-active-bg) !important;
    border-color: var(--bs-btn-active-border-color) !important;
}

.btn {

    &:hover {
        color: black !important;
      }
}

/* Filter buttons specific override */
.filter-btn:not(.active) {
    background-color: transparent !important;
}
