:root {
    --tblr-primary: #F11D46;
    --tblr-border-radius: 0;
}

.collapse-row {
    background-color: #f8f9fa;
}

.toggle-details .ti-chevron-down {
    transition: transform 0.3s;
}

[aria-expanded="true"] .ti-chevron-down {
    transform: rotate(180deg);
}

.custom-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.custom-loader-spinner {
    width: 80px;
    height: 80px;
    position: relative;
}

.spinner {
    width: 100%;
    height: 100%;
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 8px solid #3498db;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
