/* Front-end custom css */
/* Reserved Seating */
.modal-big .modal-container {
    width: 100%;
}

.modal-big .modal-container .modal-content {
    min-height: 800px;
}

.modal-small .modal-container {
    width: auto;
    margin: auto;
}

.modal-small .modal-container .modal-content {
    min-height: auto;
}

.is-relative {
    position: relative;
}

.seat-container {
    position: relative;
    overflow: auto;
    width: 800px;
    margin: 0 auto;
    padding: 0;
    display: block;
    transform-origin: 0 0;
}

.seat-img {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    border-radius: 8px;
    border: 2px solid var(--bs-border-color);
}

.seat-mark {
    position: absolute;
    z-index: 900;
    height: 24px;
    width: 24px;
    border-radius: 8px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    line-height: 2.5 !important;
    text-align: center;
    box-shadow: 1px 1px 5px -2px var(--bs-dark);
    font-size: 8px !important;
    font-weight: 800 !important;
    cursor: pointer;
}

.seat-disabled {
    background-color: var(--bs-gray);
    cursor: not-allowed !important;
}

.seat-reserved {
    background-color: var(--bs-danger);
    cursor: not-allowed !important;
}

.seat-select {
    background-color: var(--bs-success);
}

.seat-disabled-col {
    color: var(--bs-gray);
}

.seat-reserved-col {
    color: var(--bs-danger);
}

.seat-select-col {
    color: var(--bs-success);
}

.seat-available-col {
    color: var(--bs-primary);
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.m-auto {
    margin: auto;
}

.no-display {
    display: none;
}

.seat-checkbox {
    position: absolute;
    z-index: 999999;
    height: 24px;
    width: 24px;
    padding: 0 !important;
    margin: 0 !important;
    display: none;
    cursor: pointer;
}

/* Authorize.net */
.wrapper-cc {
    display: flex;
    padding: 2rem;
}

@media screen and (max-width: 700px), (max-height: 500px) {
    .wrapper-cc {
        flex-wrap: wrap;
        flex-direction: column;
    }
}

.card-form {
    max-width: 570px;
    margin: auto;
    width: 100%;
}

@media screen and (max-width: 576px) {
    .card-form {
        margin: 0 auto;
    }
}

.card-form__inner {
    background: var(--bs-white);
    box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
    border-radius: 10px;
    padding: 35px;
    padding-top: 180px;
}

@media screen and (max-width: 480px) {
    .card-form__inner {
        padding: 25px;
        padding-top: 165px;
    }
}

@media screen and (max-width: 360px) {
    .card-form__inner {
        padding: 15px;
        padding-top: 165px;
    }
}

.card-form__row {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 480px) {
    .card-form__row {
        flex-wrap: wrap;
    }
}

.card-form__col {
    flex: auto;
    margin-right: 35px;
}

.card-form__col:last-child {
    margin-right: 0;
}

@media screen and (max-width: 480px) {
    .card-form__col {
        margin-right: 0;
        flex: unset;
        width: 100%;
        margin-bottom: 20px;
    }

    .card-form__col:last-child {
        margin-bottom: 0;
    }
}

.card-form__col.-cvv {
    max-width: 150px;
}

@media screen and (max-width: 480px) {
    .card-form__col.-cvv {
        max-width: initial;
    }
}

.card-form__group {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card-form__group .card-input__input {
    flex: 1;
    margin-right: 15px;
}

.card-form__group .card-input__input:last-child {
    margin-right: 0;
}

.card-form__button {
    width: 100%;
    height: 55px;
    background: var(--bs-primary);
    border: none;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 500;
    box-shadow: 3px 10px 20px 0px rgba(var(--bs-primary-rgb), 0.3);
    color: var(--bs-white);
    margin-top: 20px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-form__button {
        margin-top: 10px;
    }
}

.card-item {
    max-width: 430px;
    height: 270px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item {
        max-width: 310px;
        height: 220px;
        width: 90%;
    }
}

@media screen and (max-width: 360px) {
    .card-item {
        height: 180px;
    }
}

.card-item.-active .card-item__side.-front {
    transform: perspective(1000px) rotateY(180deg) rotateX(0deg) rotateZ(0deg);
}

.card-item.-active .card-item__side.-back {
    transform: perspective(1000px) rotateY(0) rotateX(0deg) rotateZ(0deg);
}

.card-item__focus {
    position: absolute;
    z-index: 3;
    border-radius: 5px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.71, 0.03, 0.56, 0.85);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.card-item__focus:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #08142f;
    height: 100%;
    border-radius: 5px;
    filter: blur(25px);
    opacity: 0.5;
}

.card-item__focus.-active {
    opacity: 1;
}

.card-item__side {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px 0 rgba(14, 42, 90, 0.55);
    transform: perspective(2000px) rotateY(0deg) rotateX(0deg) rotate(0deg);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.71, 0.03, 0.56, 0.85);
    backface-visibility: hidden;
    height: 100%;
}

.card-item__side.-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: perspective(2000px) rotateY(-180deg) rotateX(0deg) rotate(0deg);
    z-index: 2;
    padding: 0;
    height: 100%;
}

.card-item__side.-back .card-item__cover {
    transform: rotateY(-180deg);
}

.card-item__bg {
    max-width: 100%;
    display: block;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-item__cover {
    height: 100%;
    background-color: #1c1d27;
    position: absolute;
    height: 100%;
    background-color: #1c1d27;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.card-item__cover:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 2, 29, 0.45);
}

.card-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 10px;
}

@media screen and (max-width: 480px) {
    .card-item__top {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__top {
        margin-bottom: 15px;
    }
}

.card-item__chip {
    width: 60px;
}

@media screen and (max-width: 480px) {
    .card-item__chip {
        width: 50px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__chip {
        width: 40px;
    }
}

.card-item__type {
    height: 45px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    max-width: 100px;
    margin-left: auto;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item__type {
        height: 40px;
        max-width: 90px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__type {
        height: 30px;
    }
}

.card-item__typeImg {
    max-width: 100%;
    object-fit: contain;
    max-height: 100%;
    object-position: top right;
}

.card-item__info {
    color: var(--bs-white);
    width: 100%;
    max-width: calc(100% - 85px);
    padding: 10px 15px;
    font-weight: 500;
    display: block;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__info {
        padding: 10px;
    }
}

.card-item__holder {
    opacity: 0.7;
    font-size: 13px;
    margin-bottom: 6px;
}

@media screen and (max-width: 480px) {
    .card-item__holder {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

.card-item__wrapper {
    padding: 25px 15px;
    position: relative;
    z-index: 4;
    height: 100%;
    text-shadow: 7px 6px 10px rgba(14, 42, 90, 0.8);
    user-select: none;
}

@media screen and (max-width: 480px) {
    .card-item__wrapper {
        padding: 20px 10px;
    }
}

.card-item__name {
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

@media screen and (max-width: 480px) {
    .card-item__name {
        font-size: 16px;
    }
}

.card-item__nameItem {
    display: inline-block;
    min-width: 8px;
    position: relative;
}

.card-item__number {
    font-weight: 500;
    line-height: 1;
    color: var(--bs-white);
    font-size: 27px;
    margin-bottom: 35px;
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__number {
        font-size: 21px;
        margin-bottom: 15px;
        padding: 10px 10px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__number {
        font-size: 19px;
        margin-bottom: 10px;
        padding: 10px 10px;
    }
}

.card-item__numberItem {
    width: 16px;
    display: inline-block;
}

.card-item__numberItem.-active {
    width: 30px;
}

@media screen and (max-width: 480px) {
    .card-item__numberItem {
        width: 13px;
    }

    .card-item__numberItem.-active {
        width: 16px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__numberItem {
        width: 12px;
    }

    .card-item__numberItem.-active {
        width: 8px;
    }
}

.card-item__content {
    color: var(--bs-white);
    display: flex;
    align-items: flex-start;
}

.card-item__date {
    flex-wrap: wrap;
    font-size: 18px;
    margin-left: auto;
    padding: 10px;
    display: inline-flex;
    width: 80px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__date {
        font-size: 16px;
    }
}

.card-item__dateItem {
    position: relative;
}

.card-item__dateItem span {
    width: 22px;
    display: inline-block;
}

.card-item__dateTitle {
    opacity: 0.7;
    font-size: 13px;
    padding-bottom: 6px;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item__dateTitle {
        font-size: 12px;
        padding-bottom: 5px;
    }
}

.card-item__band {
    background: var(--bs-dark-rgb-80);
    width: 100%;
    height: 50px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 480px) {
    .card-item__band {
        margin-top: 20px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__band {
        height: 40px;
        margin-top: 10px;
    }
}

.card-item__cvv {
    text-align: right;
    position: relative;
    z-index: 2;
    padding: 15px;
}

.card-item__cvv .card-item__type {
    opacity: 0.7;
}

@media screen and (max-width: 360px) {
    .card-item__cvv {
        padding: 10px 15px;
    }
}

.card-item__cvvTitle {
    padding-right: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--bs-white);
    margin-bottom: 5px;
}

.card-item__cvvBand {
    height: 45px;
    background: var(--bs-white);
    margin-bottom: 30px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: var(--bs-dark);
    font-size: 18px;
    border-radius: 4px;
    box-shadow: 0px 10px 20px -7px rgba(32, 56, 117, 0.35);
}

@media screen and (max-width: 480px) {
    .card-item__cvvBand {
        height: 40px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__cvvBand {
        margin-bottom: 15px;
    }
}

.card-list {
    margin-bottom: -130px;
}

@media screen and (max-width: 480px) {
    .card-list {
        margin-bottom: -120px;
    }

    .site-slogan {
        text-wrap: wrap;
    }
}

.nav-header.header-position .navbar .site-slogan {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 3.4rem !important;
    margin-top: 0.2rem !important;
}

.card-input {
    margin-bottom: 20px;
}

.card-input__label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--bs-dark);
    width: 100%;
    display: block;
    user-select: none;
}

.card-input__input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    padding: 5px 15px;
    background: var(--bs-white);
    color: var(--bs-body-color);
}

.card-input__input:hover,
.card-input__input:focus {
    border-color: var(--bs-primary);
    background: var(--bs-white);
    color: var(--bs-body-color);
}

.card-input__input:focus {
    box-shadow: 0px 10px 20px -13px rgba(32, 56, 117, 0.35);
}

.card-input__input.-select {
    -webkit-appearance: none;
    background-image: url("data:image/png; base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAeCAYAAABuUU38AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUxJREFUeNrM1sEJwkAQBdCsngXPHsQO9O5FS7AAMVYgdqAd2IGCDWgFnryLFQiCZ8EGnJUNimiyM/tnk4HNEAg/8y6ZmMRVqz9eUJvRaSbvutCZ347bXVJy/ZnvTmdJ862Me+hAbZCTs6GHpyUi1tTSvPnqTpoWZPUa7W7ncT3vK4h4zVejy8QzM3WhVUO8ykI6jOxoGA4ig3BLHcNFSCGqGAkig2yqgpEiMsjSfY9LxYQg7L6r0X6wS29YJiYQYecemY+wHrXD1+bklGhpAhBDeu/JfIVGxaAQ9sb8CI+CQSJ+QmJg0Ii/EE2MBiIXooHRQhRCkBhNhBcEhLkwf05ZCG8ICCOpk0MULmvDSY2M8UawIRExLIQIEgHDRoghihgRIgiigBEjgiFATBACAgFgghEwSAAGgoBCBBgYAg5hYKAIFYgHBo6w9RRgAFfy160QuV8NAAAAAElFTkSuQmCC");
    background-size: 12px;
    background-position: 90% center;
    background-repeat: no-repeat;
    padding-right: 30px;
}

.slide-fade-up-enter-active {
    transition: all 0.25s ease-in-out;
    transition-delay: 0.1s;
    position: relative;
}

.slide-fade-up-leave-active {
    transition: all 0.25s ease-in-out;
    position: absolute;
}

.slide-fade-up-enter {
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
}

.slide-fade-up-leave-to {
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
}

.slide-fade-right-enter-active {
    transition: all 0.25s ease-in-out;
    transition-delay: 0.1s;
    position: relative;
}

.slide-fade-right-leave-active {
    transition: all 0.25s ease-in-out;
    position: absolute;
}

.slide-fade-right-enter {
    opacity: 0;
    transform: translateX(10px) rotate(45deg);
    pointer-events: none;
}

.slide-fade-right-leave-to {
    opacity: 0;
    transform: translateX(-10px) rotate(45deg);
    pointer-events: none;
}

.iframe-full iframe {
    width: 100%;
    height: 80vh;
}

.star-active {
    color: var(--bs-warning);
    cursor: pointer;
}

.star-active:hover {
    color: var(--bs-warning);
}

.star-inactive {
    color: var(--bs-gray-400);
    cursor: pointer;
}

.profile-pic {
    width: 10%;
    border: 3px solid var(--bs-border-color);
}

.star-rating {
    direction: rtl;
    display: inline-block;
    padding: 20px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    color: var(--bs-gray-400);
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
    color: var(--bs-warning);
}

#review_modal {
    display: none;
}

.VueCarousel-pagination {
    position: absolute;
    bottom: 2%;
}

#card-element {
    margin-bottom: 2rem;
}

.w-95 {
    width: 95% !important;
}

@media (max-width: 767px) {
    .ticket-title {
        font-size: 0.7rem;
    }

    .ticket-price {
        font-size: 0.7rem;
    }

    .w-m-50 {
        width: 50% !important;
    }
}

.ticket-selected-text {
    color: var(--bs-success);
}

/* api-seat-img */
.api-seat-img {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--bs-border-color);
}

@media (max-width: 768px) {
    .api-seat-img {
        width: unset;
    }
}

/* api-seat-img */

#loading-screen {
    z-index: 99999;
    position: fixed;
    overflow: hidden;
    top: 0;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    width: 100%;
    align-items: center;
    height: 100%;
    background: linear-gradient(155deg, #7f18a8 0%, #1d0475 50%, #7c17a7 100%);
}

.invalid-feedback {
    display: block;
}

.custom-dropdown {
    position: relative;
}

.dropdownmenu {
    list-style: none;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-border-color);
    border-radius: 10px;
    display: inline-block;
    position: absolute;
    width: 208px;
    right: 150px;
    z-index: 99999;
}

.dropdownmenu li {
    position: relative;
    left: -30px;
}

.dropdownmenu a {
    width: 200px;
    padding: 1px;
    color: var(--bs-body-color);
}

.dropdownmenu a:hover {
    background: var(--bs-light);
    color: var(--bs-primary);
}

@media only screen and (min-width: 1200px) {
    .dropdownmenu {
        position: absolute;
        right: 130px;
    }
}

@media only screen and (max-width: 1200px) {
    .dropdownmenu {
        position: absolute;
        top: -12px;
        right: 90px;
        z-index: 99999;
    }
}

/* Select ticket design START */
.avatar.xs {
    width: 16px;
    min-width: 16px;
    height: 16px;
}

.lgx-single-schedule .schedule-info:hover {
    background: var(--bs-light);
}

.lgx-single-schedule .schedule-info:hover p {
    color: var(--bs-primary);
}

.img-hover:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
/* Select ticket design END */

.organizer-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: 1rem;
}

.organizer-overlay img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.blurred-bg {
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.2);
    z-index: 0;
}

.overlay-dark {
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.featured-user-avatar {
    width: 36px;
    height: 36px;
    object-fit: cover;
}

/* Venues Homepage */
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #dc3545; /* Bootstrap 'danger' or any accent color */
    margin: 0.5rem auto 0;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px var(--bs-border-color);
    transition: all 0.3s ease;
}

/* Blogs */
.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bs-white);
}

.card-img-top {
    width: 100%;
    aspect-ratio: 16 / 9; /* forces the image box to a 16:9 ratio */
    object-fit: cover; /* crops & scales the image to fill */
}

/* Homepage steps */
/* Hide native radios */
.howit-tabs input[type="radio"] {
    display: none;
}

/* Tab labels */
.howit-tabs .tab-label {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.howit-tabs .tab-label:hover {
    color: #000;
}

/* Active tab underline */
#tab-organiser:checked + label[for="tab-organiser"],
#tab-customer:checked + label[for="tab-customer"] {
    color: #000;
    border-color: #000;
}

/* Hide all panels */
.howit-tabs .tab-content .tab-panel {
    display: none;
}
/* Show organiser panel */
#tab-organiser:checked ~ .tab-content .tab-panel.organiser {
    display: block;
}
/* Show customer panel */
#tab-customer:checked ~ .tab-content .tab-panel.customer {
    display: block;
}

/* Step styling */
.step {
    padding-left: 3rem;
}
.step-icon {
    width: 48px;
    height: 48px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.25rem;
}
.step-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}
.border-bottom {
    border-bottom: 1px solid #dee2e6;
    margin-top: 2rem;
}

.app-cta-section {
    background-color: #000;
}
.gradient-circle {
    position: absolute;
    top: -155px;
    left: -170px;
    width: 600px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #2176ff, #2176ff);
    z-index: 0;
}
.app-cta-section .container,
.app-cta-section .row > div {
    position: relative; /* bring text & images above the circle */
    z-index: 1;
}
.app-cta-section h2,
.app-cta-section p {
    color: var(--bs-white);
}
.btn-store {
    display: inline-flex;
    align-items: center;
    background: var(--bs-white);
    color: #000;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
}
.btn-store:hover {
    background: #f0f0f0;
}
.app-mockup {
    max-width: 150px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Event page */
.organiser-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.organiser-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-white);
}
.ticket-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    max-width: 800px;
}

.ticket-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.btn-buy {
    display: inline-block;
    background-color: #f5ee16; /* bright yellow */
    color: #111;
    font-weight: 600;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: background-color 0.2s ease;
}

.btn-buy:hover {
    background-color: #e0dd14;
}

/* Event schedule */
.schedule-row {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.schedule-col {
    flex: 1 1 0;
}

/* Date column gets more weight */
.schedule-date {
    flex: 2 1 0;
    font-size: 1rem;
}

/* Status centered, fixed width */
.schedule-status {
    flex: 0 0 120px;
}

/* Time column fixed width, right aligned */
.schedule-time {
    flex: 0 0 180px;
    font-size: 0.9rem;
}

.schedule-status .badge,
.schedule-time .badge {
    font-size: 0.85rem;
    padding: 0.4em 0.8em;
    border-radius: 999px;
}

/* Complimentary booking */
/* Enlarge the toggle, change colors */
.form-switch .form-check-input {
    width: 50px;
    height: 1.8rem;
    margin-left: 0;
    cursor: pointer;
    background-color: #ccc;
    transition: background-color 0.3s;
}

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

.form-switch .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.form-switch .form-check-input::before {
    width: 1.6rem;
    height: 1.6rem;
    top: 0.1rem;
    left: 0.1rem;
    background-color: var(--bs-white);
    transition: transform 0.3s;
}

.form-switch .form-check-input:checked::before {
    transform: translateX(28px);
}

/* Adjust label spacing */
.form-switch .form-check-label {
    margin-left: 0.75rem;
    cursor: pointer;
}

/* Checkout Popup */
/* Section heading */
.payment-options > p.h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

/* Container for all radios */
.payment-options .list-group-flush {
    padding: 0;
    margin: 0;
}

/* Each radio "row" */
.payment-options .radio-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

/* Last item: remove bottom border */
.payment-options .radio-inline:last-of-type {
    border-bottom: none;
}

/* Hide the default radio bullet, style custom */
.payment-options input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #bbb;
    border-radius: 50%;
    position: relative;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

/* Inner dot when checked */
.payment-options input[type="radio"]:checked {
    border-color: var(--bs-primary);
}

.payment-options input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    width: 9px;
    height: 9px;
    background-color: var(--bs-primary);
    border-radius: 50%;
}

/* Icon color */
.payment-options .radio-inline i,
.payment-options .radio-inline svg {
    font-size: 1.25rem;
    color: var(--bs-primary);
    flex-shrink: 0;
}

/* Label text */
.payment-options .radio-inline label {
    margin: 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Small side-notes (like "(Cash on Arrival)") */
.payment-options .radio-inline small {
    color: #666;
    font-size: 0.875rem;
}

/* Terms text at the end */
.payment-options p.text-mute.h6 {
    font-size: 0.875rem;
    color: #666;
    margin-top: 1rem;
}

.slick-prev,
.slick-next {
    z-index: 99999;
    top: 40% !important;
}

.slick-prev {
    left: 0% !important;
}
.slick-prev:before {
    content: "‹" !important;
}
.slick-next {
    right: 0% !important;
}
.slick-next:before {
    content: "›" !important;
}

[data-bs-theme="dark"] .card-form__inner {
    background: var(--bs-white);
}

[data-bs-theme="dark"] .card-input__input {
    background: var(--bs-white);
    color: var(--bs-body-color);
    border-color: var(--bs-border-color);
}

/* Dark mode styles for sidebar */
[data-bs-theme="dark"] #db-wrapper-two .navbar-vertical-compact {
    background-color: var(--bs-dark);
}

[data-bs-theme="dark"] #db-wrapper-two .navbar-vertical-compact .nav-link {
    color: var(--bs-light);
}

[data-bs-theme="dark"]
    #db-wrapper-two
    .navbar-vertical-compact
    .nav-link:hover {
    color: var(--bs-white);
}

[data-bs-theme="dark"] #db-wrapper-two .navbar-vertical-compact .nav-icon i {
    color: var(--bs-text-dark);
}

[data-bs-theme="dark"]
    #db-wrapper-two
    .navbar-vertical-compact
    .nav-link:hover
    .nav-icon
    i {
    color: var(--bs-white);
}

/* Fix for text-inherit and table-light classes in dark mode */
[data-bs-theme="dark"] .text-inherit,
[data-bs-theme="dark"]
    a.text-inherit:not(.btn):not(.nav-link):not(.dropdown-item):not(
        .footer-link
    ) {
    color: var(--bs-body-color) !important;
}

[data-bs-theme="dark"] .table-light {
    --bs-table-bg: rgba(var(--bs-light-rgb), 0.1);
    --bs-table-color: var(--bs-body-color);
    --bs-table-border-color: var(--bs-border-color);
}

[data-bs-theme="dark"] .table-light th,
[data-bs-theme="dark"] .table-light td {
    background-color: var(--bs-table-bg);
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

/* Fix for button classes in dark mode */
[data-bs-theme="dark"] .btn-outline-secondary {
    color: var(--bs-text-dark);
    border-color: var(--bs-text-dark);
}

[data-bs-theme="dark"] .btn-outline-secondary:hover,
[data-bs-theme="dark"] .btn-outline-secondary:focus,
[data-bs-theme="dark"] .btn-outline-secondary:active {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-white);
    border-color: var(--bs-btn-hover-border-color);
}

/* Fix for modal close button */
.modal .modal-content .modal-header .close span {
    font-size: 1rem !important;
    font-weight: 600 !important;
}
.modal .modal-content .modal-header .close {
    padding: 0.2rem 0.5rem !important;
}

/* Fix for Vue Confirm dialog in dark mode */
[data-bs-theme="dark"] .vc-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

[data-bs-theme="dark"] .vc-container {
    background-color: var(--bs-dark);
    border-color: var(--bs-border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="dark"] .vc-title {
    color: var(--bs-white);
}

[data-bs-theme="dark"] .vc-text {
    color: var(--bs-light);
}

[data-bs-theme="dark"] .vc-btn {
    background-color: var(--bs-secondary);
    color: var(--bs-text-dark);
    border-color: var(--bs-border-color);
}

[data-bs-theme="dark"] .vc-btn:hover {
    background-color: var(--bs-primary);
}

[data-bs-theme="dark"] .vc-btn.left {
    background-color: var(--bs-primary);
    color: var(--bs-text-dark);
}

[data-bs-theme="dark"] .vc-btn.left:hover {
    background-color: var(--bs-primary-darker, #0d6efd);
}

/* Fix for multiselect in dark mode */
[data-bs-theme="dark"] .multiselect__tags {
    background-color: var(--bs-dark);
    border-color: var(--bs-border-color);
    color: var(--bs-light);
}

[data-bs-theme="dark"] .multiselect__input,
[data-bs-theme="dark"] .multiselect__single {
    background-color: var(--bs-dark);
    color: var(--bs-light);
}

[data-bs-theme="dark"] .multiselect__content-wrapper {
    background-color: var(--bs-dark);
    border-color: var(--bs-border-color);
}

[data-bs-theme="dark"] .multiselect__option {
    color: var(--bs-light);
}

[data-bs-theme="dark"] .multiselect__option--highlight {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

[data-bs-theme="dark"] .multiselect__option--selected {
    background-color: rgba(var(--bs-primary-rgb), 0.2);
    color: var(--bs-white);
}

[data-bs-theme="dark"] .multiselect__placeholder {
    color: var(--bs-gray-500);
}

/* Fix for color classes in dark mode */
[data-bs-theme="dark"] .text-primary {
    color: var(--bs-primary) !important;
}

[data-bs-theme="dark"] .text-success {
    color: var(--bs-success) !important;
}

[data-bs-theme="dark"] .form-horizontal .text-danger {
    color: var(--bs-danger) !important;
}
[data-bs-theme="dark"] .lgx-contactform .text-danger {
    color: var(--bs-danger) !important;
}
[data-bs-theme="dark"] .modal-body form .text-danger {
    color: var(--bs-danger) !important;
}

[data-bs-theme="dark"] .text-danger {
    color: var(--bs-danger) !important;
}

[data-bs-theme="dark"] .text-warning {
    color: var(--bs-warning) !important;
}

[data-bs-theme="dark"] .text-info {
    color: var(--bs-info) !important;
}

[data-bs-theme="dark"] .text-secondary {
    color: var(--bs-secondary) !important;
}

/* Fix for table text color in dark mode */
[data-bs-theme="dark"] .table > :not(caption) > * > * {
    color: var(--bs-body-color);
}

/* Dark mode border overrides */
[data-bs-theme="dark"] .border-dark,
[data-bs-theme="dark"] .border-black {
    border-color: #ffffff !important;
}

[data-bs-theme="dark"] .border-dark-subtle {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* SweetAlert toast styling */
.swal2-container.swal2-top-end .swal2-popup,
.swal2-container.swal2-top-right .swal2-popup {
    width: auto !important;
    max-width: 350px !important;
}

.swal2-popup.swal2-toast {
    width: auto !important;
    padding: 0.5rem 1rem !important;
}

.swal2-toast div:where(.swal2-html-container),
.swal2-container .swal2-popup .swal2-html-container,
div.swal2-html-container {
    margin: 0rem 0rem 0 !important;
    padding: 0px 0px !important;
    line-height: unset !important;
    width: fit-content !important;
    max-width: 100% !important;
}

/* Custom dropdown styling */

.custom-dropdown .dropdownmenu {
    display: none;
    list-style: none;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-border-color);
    border-radius: 10px;
    position: absolute;
    width: max-content;
    left: 0;
    top: 100%;
    z-index: 99999;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    left: auto;
}

.custom-dropdown:hover .dropdownmenu,
.custom-dropdown:focus-within .dropdownmenu {
    display: block;
}

.custom-dropdown .dropdownmenu li {
    margin: 3px 0;
    position: relative;
    left: 0;
}

.custom-dropdown .dropdownmenu a {
    display: block;
    width: 100%;
    padding: 3px 10px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: inherit;
}

.custom-dropdown .dropdownmenu a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Light mode specific styles */
.custom-dropdown .dropdownmenu a.btn-dark {
    background-color: #212529;
    color: #fff;
}

.custom-dropdown .dropdownmenu a.btn-primary {
    background-color: #0d6efd;
    color: #fff;
}

.custom-dropdown .dropdownmenu a.disabled {
    opacity: 0.65;
    pointer-events: none;
}

/* Dark mode border fixes */
[data-bs-theme="dark"] .border-bottom {
    border-bottom-color: var(--bs-border-color) !important;
}

/* Dark mode styles for custom dropdown */
[data-bs-theme="dark"] .custom-dropdown .dropdownmenu {
    background-color: #2b3035;
    border-color: #495057;
}

[data-bs-theme="dark"] .custom-dropdown .dropdownmenu a.btn-dark {
    background-color: #495057;
    color: #fff;
}

[data-bs-theme="dark"] .custom-dropdown .dropdownmenu a.btn-primary {
    background-color: #0d6efd;
    color: #fff;
}

[data-bs-theme="dark"] .custom-dropdown .dropdownmenu a.disabled {
    background-color: #495057;
    color: #adb5bd;
}

/* Fix for SweetAlert confirmation dialog in dark mode */
[data-bs-theme="dark"] .swal2-popup.swal2-modal .custom-swal-title,
[data-bs-theme="dark"] .swal2-popup.swal2-modal .swal2-title {
    color: var(--bs-white) !important;
}

.swal2-popup.swal2-modal.custom-swal-popup .swal2-html-container {
    text-align: center !important;
    margin: 1em auto !important;
    width: 100% !important;
}

[data-bs-theme="dark"]
    .swal2-popup.swal2-modal.custom-swal-popup-success
    .swal2-html-container {
    color: var(--bs-success) !important;
}

.nav-item.dropdown .dropdown-menu {
    left: auto !important;
    right: 100% !important;
    top: 0 !important;
    margin-right: 0.125rem !important;
    transform-origin: right top !important;
}
.dropdown-item.dropdown-toggle::after {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
}
.dropdown-menu {
    min-width: 12rem;
}

/* Vue Good Table Dark Mode Styles */

/* Table base */
[data-bs-theme="dark"] .vgt-table {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-gray-600) !important;
}

[data-bs-theme="dark"] .vgt-table th {
    background-color: var(--bs-gray-800) !important;
    border-color: var(--bs-gray-600) !important;
    font-weight: 600 !important;
}

[data-bs-theme="dark"] .vgt-table td {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-gray-600) !important;
}

[data-bs-theme="dark"] .vgt-table th.sortable:hover {
    background-color: var(--bs-gray-600) !important;
}

/* Alternating row colors */
[data-bs-theme="dark"] .vgt-table tr:nth-child(even) td {
    background-color: var(--bs-gray-700) !important;
}

/* Footer */
[data-bs-theme="dark"] .vgt-wrap__footer {
    background-color: var(--bs-gray-800) !important;
    border-color: var(--bs-gray-600) !important;
    color: var(--bs-body-color) !important;
}

/* Search */
[data-bs-theme="dark"] .vgt-global-search {
    background-color: var(--bs-gray-800) !important;
    border-color: var(--bs-gray-600) !important;
    padding: 12px !important;
}

[data-bs-theme="dark"]
    .vgt-global-search__input
    .input__icon
    .magnifying-glass {
    border-color: var(--bs-light) !important;
}

[data-bs-theme="dark"]
    .vgt-global-search__input
    .input__icon
    .magnifying-glass:before {
    background-color: var(--bs-light) !important;
}

/* Form elements */
[data-bs-theme="dark"] .vgt-input,
[data-bs-theme="dark"] .vgt-select {
    background-color: var(--bs-gray-700) !important;
    border-color: var(--bs-gray-600) !important;
    color: var(--bs-body-color) !important;
}

/* Footer elements */
[data-bs-theme="dark"] .vgt-wrap__footer .footer__row-count__label,
[data-bs-theme="dark"] .vgt-wrap__footer .footer__row-count__select,
[data-bs-theme="dark"] .vgt-wrap__footer .footer__navigation__page-btn,
[data-bs-theme="dark"] .vgt-wrap__footer .footer__navigation__info,
[data-bs-theme="dark"] .vgt-wrap__footer .footer__navigation__page-info {
    color: #2b3035 !important;
}

[data-bs-theme="dark"] .vgt-wrap__footer .footer__navigation__page-btn.disabled,
[data-bs-theme="dark"]
    .vgt-wrap__footer
    .footer__navigation__page-btn.disabled:hover {
    color: var(--bs-gray-600) !important;
}

/* Sort indicators */
[data-bs-theme="dark"] .vgt-table th.sortable:after {
    border-top-color: var(--bs-light) !important;
}

[data-bs-theme="dark"] .vgt-table th.sortable:before {
    border-bottom-color: var(--bs-light) !important;
}
[data-bs-theme="dark"] .vgt-table thead th {
    color: #343a40 !important;
}

/* Special columns */
[data-bs-theme="dark"] .vgt-table th.line-numbers,
[data-bs-theme="dark"] .vgt-table th.vgt-checkbox-col {
    background: #343a40 !important;
    color: var(--bs-body-color) !important;
}

[data-bs-theme="dark"] .vgt-table td.vgt-checkbox-col {
    background-color: var(--bs-dark) !important;
}

/* Table inputs */
[data-bs-theme="dark"] .vgt-table .vgt-input,
[data-bs-theme="dark"] .vgt-table .vgt-select {
    background-color: var(--bs-gray-700) !important;
    border-color: var(--bs-gray-600) !important;
    color: var(--bs-body-color) !important;
}

[data-bs-theme="dark"] .vgt-table .vgt-input::placeholder {
    color: var(--bs-gray-500) !important;
}

/* Hover states */
[data-bs-theme="dark"] .vgt-wrap__footer .footer__navigation__page-btn:hover {
    color: var(--bs-primary) !important;
}

[data-bs-theme="dark"] .vgt-table tbody tr:hover td {
    background-color: var(--bs-gray-600) !important;
}

[data-bs-theme="dark"] .vgt-table .is--active {
    background-color: var(--bs-gray-600) !important;
}

/* Loading state */
[data-bs-theme="dark"] .vgt-loading {
    background: rgba(33, 37, 41, 0.7) !important;
}

[data-bs-theme="dark"] .vgt-loading__content {
    background-color: var(--bs-gray-800) !important;
    color: var(--bs-body-color) !important;
}

/* Pagination */
[data-bs-theme="dark"] .vgt-wrap__footer .footer__navigation__page-btn,
[data-bs-theme="dark"] .vgt-wrap__footer .footer__navigation__info {
    color: var(--bs-body-color) !important;
}

[data-bs-theme="dark"]
    .vgt-wrap__footer
    .footer__navigation__page-btn:hover:not(.disabled),
[data-bs-theme="dark"]
    .vgt-wrap__footer
    .footer__navigation__page-btn:focus:not(.disabled) {
    color: var(--bs-primary) !important;
}

/* Colored text */
[data-bs-theme="dark"] .text-primary {
    color: var(--bs-primary) !important;
}

[data-bs-theme="dark"] .text-success {
    color: var(--bs-success) !important;
}

[data-bs-theme="dark"] .text-danger {
    color: var(--bs-danger) !important;
}

[data-bs-theme="dark"] .text-warning {
    color: var(--bs-warning) !important;
}

[data-bs-theme="dark"] .text-info {
    color: var(--bs-info) !important;
}

[data-bs-theme="dark"] .text-muted {
    color: var(--bs-gray-600) !important;
}

/* Event Tickets Statistics Table - Additional Styling */
.vgt-table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 0.375rem;
    overflow: hidden;
}

/* Light Mode Table */
[data-bs-theme="light"] .vgt-table th {
    background-color: #f8f9fa;
    color: #212529;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 1rem 0.75rem;
    border-bottom: 2px solid #dee2e6;
}

[data-bs-theme="light"] .vgt-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

[data-bs-theme="light"] .vgt-table tr:hover td {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Dark Mode Table - Additional Styles */
[data-bs-theme="dark"] .vgt-table th {
    background-color: var(--bs-gray-800) !important;
    color: #f0f5ff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 1rem 0.75rem;
    border-bottom: 2px solid #495057;
}

[data-bs-theme="dark"] .vgt-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #495057;
    vertical-align: middle;
}

/* Override for table text in dark mode */
[data-bs-theme="dark"] .vgt-table .fw-bold.text-primary {
    color: var(--bs-primary) !important;
}

[data-bs-theme="dark"] .vgt-table .small.text-muted {
    color: var(--bs-gray-500) !important;
}

/* Fix for table header and footer text in dark mode */

[data-bs-theme="dark"] .card span {
    color: #495057 !important;
}

[data-bs-theme="dark"] .vgt-wrap__footer .footer__row-count__label,
[data-bs-theme="dark"] .vgt-wrap__footer .footer__navigation__info,
[data-bs-theme="dark"] .vgt-wrap__footer .footer__navigation__page-info,
[data-bs-theme="dark"]
    .vgt-wrap__footer
    .footer__navigation__page-btn:not(.disabled) {
    color: #495057 !important;
}

/* Fix for search input in dark mode */
[data-bs-theme="dark"]
    .vgt-global-search__input
    .input__icon
    .magnifying-glass {
    border-color: var(--bs-gray-600) !important;
}

[data-bs-theme="dark"]
    .vgt-global-search__input
    .input__icon
    .magnifying-glass:before {
    background-color: var(--bs-gray-600) !important;
}

/* Event Total Styling */
.fw-bold.text-primary {
    font-size: 1rem;
}

/* Search Input Styling */
.vgt-global-search {
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

/* Dark Mode Footer Styling */
[data-bs-theme="dark"] div.footer {
    background-color: #121212;
    color: #f8f9fa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .footer-link {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}

[data-bs-theme="dark"] .footer-link:hover {
    color: #0d6efd;
    text-decoration: none;
}

[data-bs-theme="dark"] .footer h6 {
    color: #f8f9fa;
}

[data-bs-theme="dark"] .footer .text-gray-400 {
    color: #000 !important;
}

[data-bs-theme="dark"] .footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
}

[data-bs-theme="dark"] .footer .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
[data-bs-theme="dark"] .app-cta-section h2,
.app-cta-section p {
    color: #fff;
}

.vgt-global-search__input input {
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

[data-bs-theme="light"] .vgt-global-search__input input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

[data-bs-theme="dark"] .vgt-global-search__input input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Pagination Styling */
.vgt-wrap__footer {
    padding: 1rem;
    border-radius: 0 0 0.375rem 0.375rem;
}

.footer__navigation__page-btn {
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vgt-table th,
    .vgt-table td {
        padding: 0.5rem;
    }

    .vgt-global-search {
        padding: 0.75rem !important;
    }
}

[data-bs-theme="dark"]
    a:not(.btn):not(.nav-link):not(.dropdown-item):not(.footer-link) {
    color: var(--bs-body-color) !important;
}


/* Style for active schedule */
.lgx-single-schedule.schedule-active {
    transform: scale(1.02);
    z-index: 1;
}

.lgx-single-schedule.schedule-active .card {
    border-color: var(--bs-primary) !important;
    background-color: var(--bs-primary) !important;
    border-width: 2px !important;
}

.weekly-timing {
    position:absolute;
    bottom:-70%;
}
.monthly-timing {
    position:absolute;
    bottom: -50%;
    left: -2.3%;
}
@media (max-width: 768px) {
    .weekly-timing {
        bottom: -3%;
        left: 5%;
    }
    .monthly-timing {
        bottom: -37%;
        left: -7%;
    }
}

/* Accordion styles */
.css-accordion {
    border-radius: var(--bs-border-radius-lg); /* Uses Bootstrap's large border radius */
    overflow: hidden;
    border: 1px solid var(--bs-border-color); /* Dynamic border color */
    background: var(--bs-body-bg); /* Matches body background for light/dark mode */
    color: var(--bs-body-color); /* Matches body text color */
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.04); /* Subtle shadow for depth */
    margin-bottom: 2rem;
  }
  
  .css-accordion input[type="checkbox"] {
    display: none;
  }
  
  .css-accordion-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--bs-border-color); /* Dynamic border */
    background: var(--bs-body-bg); /* Matches body background */
    color: var(--bs-body-color); /* Matches body text */
    transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    user-select: none;
    outline: none;
  }
  
  
  
  .css-accordion-label:hover,
  .css-accordion input[type="checkbox"]:checked + .css-accordion-label {
    background: var(--bs-light); /* Light background for hover/active state */
  }
  
  [data-bs-theme="dark"] .css-accordion-label:hover,
  [data-bs-theme="dark"] .css-accordion input[type="checkbox"]:checked + .css-accordion-label {
    background: var(--bs-gray-800); /* Darker shade for dark mode hover/active */
  }
  
  .css-accordion-label i {
    margin-right: 0.75rem;
    color: var(--bs-gray-500); /* Neutral icon color */
    font-size: 1.2rem;
  }
  
  .css-accordion-label::after {
    content: "+";
    font-size: 1.5rem;
    margin-left: auto;
    color: var(--bs-gray-500); /* Neutral icon color */
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .css-accordion input[type="checkbox"]:checked + .css-accordion-label::after {
    content: "–";
    color: var(--bs-gray-500);
    transform: rotate(180deg);
  }
  
  .css-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bs-body-bg); /* Matches body background */
    color: var(--bs-body-color); /* Matches body text */
    padding: 0 1.5rem;
    font-size: 1rem;
  }
  
  .css-accordion input[type="checkbox"]:checked ~ .css-accordion-content {
    max-height: 2000px;
    padding: 1.2rem 1.5rem;
  }
  
  .css-accordion-item:last-child .css-accordion-label {
    border-bottom: none;
  }

/* Dashboard Stat Customization for Discounts, Admin Fees, and Earnings */
.stat-card {
    padding: 1rem;
}
.stat-number.stat-discounts,
.stat-number.stat-admin-fees,
.stat-number.stat-earnings {
    font-size: 1rem !important; /* smaller than default */
    font-weight: 600;
}


.stat-number{
    font-size: 1rem !important; /* smaller than default */
    font-weight: 600;
}

.border-gray{
    border-bottom-color: #dee2e6 !important;
}

[data-bs-theme=dark] .border-gray {
    border-bottom-color: #6b7280 !important;
}