/* /Components/Loading/Loading.razor.rz.scp.css */
.loading-spinner-container[b-dvhvgjc9ok] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    gap: 1rem;
    animation: slideInUp-b-dvhvgjc9ok 0.3s ease-out;
}

.loading-text[b-dvhvgjc9ok] {
    color: white;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    animation: fadeIn-b-dvhvgjc9ok 0.5s ease-in-out;
}

/* Keyframes for animations */
@keyframes fadeIn-b-dvhvgjc9ok {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp-b-dvhvgjc9ok {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Custom sizes for spinners */
.spinner-border-lg[b-dvhvgjc9ok] {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

.spinner-border-xl[b-dvhvgjc9ok] {
    width: 4rem;
    height: 4rem;
    border-width: 0.4em;
}

/* Styles for different types of display */
.loading-spinner-container.loading-fullscreen[b-dvhvgjc9ok] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.loading-spinner-container.loading-overlay[b-dvhvgjc9ok] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 100;
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
    border-radius: 16px;
}
/* /Components/Table/Table.razor.rz.scp.css */
.col-small[b-1lh9q5k564] {
    width: 120px;
}

.haveMorePages[b-1lh9q5k564] {
    border-width: 0px !important;
    pointer-events: none;
}

.loading[b-1lh9q5k564] {
    min-height: 300px;
    padding-left: 24px;
}

.dataTable-top-no-padding-top[b-1lh9q5k564] {
    padding-top: 0px !important;
}

.search-container[b-1lh9q5k564] {
    position: relative;
    width: 100%;
}

.clear-button[b-1lh9q5k564] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 16px;
    padding: 0;
    display: none;
}

    .clear-button:hover[b-1lh9q5k564] {
        color: #333;
    }

    .clear-button i[b-1lh9q5k564] {
        line-height: 1;
    }

.dataTable-input:not(:placeholder-shown) + .clear-button[b-1lh9q5k564] {
    display: inline-block;
}

.dataTable-top[b-1lh9q5k564] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;    
}

@media (min-width: 769px) {
    .dataTable-top[b-1lh9q5k564] {
        padding-left: 0;
    }
}

.dataTable-dropdown[b-1lh9q5k564] {
    flex-shrink: 0;
    order: 1;
}

.dataTable-search[b-1lh9q5k564] {
    flex-shrink: 0;
    max-width: 300px;
    min-width: 200px;
    order: 2; 
    margin-left: auto;
}

.dataTable-input[b-1lh9q5k564] {
    width: 100%;
    max-width: 100%;
    padding-right: 40px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    /* Make the top section completely vertical on mobile */
    .dataTable-top[b-1lh9q5k564] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .dataTable-dropdown[b-1lh9q5k564] {
        align-self: flex-start;
    }

        .dataTable-dropdown label[b-1lh9q5k564] {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 14px;
        }

    .dataTable-selector[b-1lh9q5k564] {
        flex-shrink: 0;
    }

    .dataTable-search[b-1lh9q5k564] {
        width: 100%;
        min-width: unset;
        max-width: unset;
        margin-left: 0;
    }

    .search-container[b-1lh9q5k564] {
        width: 100%;
    }

    .dataTable-input[b-1lh9q5k564] {
        width: 100%;
        padding: 8px 40px 8px 12px;
        font-size: 16px;
        border-radius: 4px;
        border: 1px solid #ccc;
    }

    .table-responsive[b-1lh9q5k564] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px; /* Offset container padding */
        padding: 0 15px;
    }

    .dataTable-table[b-1lh9q5k564] {
        width: 100%;
        min-width: unset;
        table-layout: auto;
    }

        /* Make columns fit better on mobile */
        .dataTable-table th[b-1lh9q5k564],
        .dataTable-table td[b-1lh9q5k564] {
            padding: 8px 4px;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 150px;
        }

    /* Center the entire pagination section on mobile */
    .dataTable-bottom[b-1lh9q5k564] {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 1rem;
    }

    /* Center the text "Showing x to y of z" */
    .dataTable-info[b-1lh9q5k564] {
        text-align: center;
        margin: 0;
        font-size: 14px;
    }

    /* Center pagination */
    .dataTable-pagination[b-1lh9q5k564] {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .dataTable-pagination-list[b-1lh9q5k564] {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .dataTable-pagination-list li[b-1lh9q5k564] {
            flex-shrink: 0;
        }

            .dataTable-pagination-list li a[b-1lh9q5k564] {
                padding: 8px 12px;
                font-size: 14px;
                min-width: 40px;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                border: 1px solid #ddd;
                background: white;
                color: #333;
                border-radius: 4px;
                cursor: pointer;
                transition: all 0.2s ease;
            }

                .dataTable-pagination-list li a:hover[b-1lh9q5k564] {
                    background: #f8f9fa;
                    border-color: #007bff;
                }

            .dataTable-pagination-list li.pager a[b-1lh9q5k564] {
                padding: 8px 10px;
                min-width: 36px;
                font-weight: bold;
            }

            .dataTable-pagination-list li.active a[b-1lh9q5k564] {
                font-weight: bold;
                background: #007bff;
                color: white;
                border-color: #007bff;
            }

                .dataTable-pagination-list li.active a:hover[b-1lh9q5k564] {
                    background: #0056b3;
                    border-color: #0056b3;
                }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .dataTable-top[b-1lh9q5k564] {
        gap: 1rem;
    }

    .dataTable-search[b-1lh9q5k564] {
        max-width: 300px;
    }
}

.dataTable-wrapper[b-1lh9q5k564] {
    width: 100%;
    overflow: hidden;
}

.dataTable-container[b-1lh9q5k564] {
    width: 100%;
    overflow-x: auto;
}
/* /Features/Halls/Sections/Order/OrderSections.razor.rz.scp.css */
.section-item[b-isold12oih] {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

    .section-item.moving-up[b-isold12oih] {
        animation: moveUp-b-isold12oih 0.3s ease-out;
    }

    .section-item.moving-down[b-isold12oih] {
        animation: moveDown-b-isold12oih 0.3s ease-out;
    }

@keyframes moveUp-b-isold12oih {
    0% {
        transform: translateY(100%);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes moveDown-b-isold12oih {
    0% {
        transform: translateY(-100%);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Features/Halls/Templates/EditSections/EditSections.razor.rz.scp.css */
.btn-list[b-x4c66uz9cc] {
    width: 50px;
    padding-left: 8px;
    padding-right: 8px;
    min-width: 0px;
}

.section-item[b-x4c66uz9cc] {
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
}

    .section-item.moving-up[b-x4c66uz9cc] {
        animation: slideUp-b-x4c66uz9cc 0.3s ease-in-out;
    }

    .section-item.moving-down[b-x4c66uz9cc] {
        animation: slideDown-b-x4c66uz9cc 0.3s ease-in-out;
    }

@keyframes slideUp-b-x4c66uz9cc {
    0% {
        transform: translateY(0);
        background-color: var(--bs-light);
    }

    50% {
        transform: translateY(-10px);
        background-color: var(--bs-primary-bg-subtle);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    100% {
        transform: translateY(0);
        background-color: var(--bs-light);
    }
}

@keyframes slideDown-b-x4c66uz9cc {
    0% {
        transform: translateY(0);
        background-color: var(--bs-light);
    }

    50% {
        transform: translateY(10px);
        background-color: var(--bs-primary-bg-subtle);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    100% {
        transform: translateY(0);
        background-color: var(--bs-light);
    }
}
/* /Features/Shows/Create/CreateShow.razor.rz.scp.css */
/* Progress bar */
.multisteps-form__progress[b-t85hr7ut5n] {
    background-color: white;
    border-radius: 15px;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.05);
}

/* Hide steps text in small devices*/
@media (max-width: 660px) {
    .multisteps-form__progress-btn span[b-t85hr7ut5n] {
        display: none;
    }
}

/* Fixed height for checkbox labels */
.checkbox-label-fixed-height[b-t85hr7ut5n] {
    min-height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Prevent user interaction with header steps */
.multisteps-form__progress-btn[b-t85hr7ut5n] {
    pointer-events: none;
    cursor: default;
}
/* /Features/Shows/Performances/ChangePrices/ChangePerformancePrices.razor.rz.scp.css */
/* Remove spinner arrows from number input */
input[type="number"].no-spinner[b-6q344dxgl1]::-webkit-inner-spin-button,
input[type="number"].no-spinner[b-6q344dxgl1]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].no-spinner[b-6q344dxgl1] {
    -moz-appearance: textfield;
}
/* /Features/Shows/Performances/ManageCapacityReservations/ManageCapacityReservations.razor.rz.scp.css */
.capacity-indicator[b-2gwsn7qapv] {
    width: 10px;
    height: 10px;
}

.capacity-summary[b-2gwsn7qapv] {
    max-width: 250px;
}

.btn-modify[b-2gwsn7qapv] {
    max-width: 150px;
}
/* /Features/Shows/Performances/ManageSections/ManagePerformanceSections.razor.rz.scp.css */
.order-btn[b-09058iezwh] {
    min-width: 30px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-top: 0;
    margin-bottom: 0;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* /Features/Shows/View/ViewShow.razor.rz.scp.css */
.btn-icon-only[b-k1j3kvyrem] {
    min-width: auto;
}
/* /Features/Users/Create/CreateUser.razor.rz.scp.css */
.btnSend[b-2ijb4mluhb] {
    min-width: 120px;
}
/* /Layout/Notifications.razor.rz.scp.css */
.alert[b-q9e7bk4gr3] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 250px;
    z-index: 1050;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    width: 300px;
}

.alert.fade-out[b-q9e7bk4gr3] {
    opacity: 0;
}

.alert-text[b-q9e7bk4gr3]{
    margin-left: 10px;
}
