/**
 * TC Book Whole Table - Overlay Button Styles
 */

/* Overlay Button */
.tc-book-table-overlay-btn {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0085BA 0%, #005177 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 9999;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 133, 186, 0.4);
    white-space: nowrap;
    transition: all 0.3s ease;
    pointer-events: all;
}

.tc-book-table-overlay-btn:hover {
    background: linear-gradient(135deg, #006a96 0%, #003d5c 100%);
    box-shadow: 0 6px 16px rgba(0, 133, 186, 0.5);
    transform: translateX(-50%) scale(1.05);
}

.tc-book-table-overlay-btn:active {
    transform: translateX(-50%) scale(0.98);
}

/* Loading Overlay */
.tc-bulk-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-bulk-loading-content {
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tc-bulk-loading-content p {
    margin: 15px 0 0 0;
    font-size: 16px;
    color: #333;
}

/* Loading Spinner */
.tc-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0085BA;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: tc-spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes tc-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}