


        :root {
            --cue-green: #10b981;
            --border-color: #007f514e;
            --cue-dark: #064e3b;
            --text-main: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --glass: rgba(255, 255, 255, 0.8);
        }
body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}


text-gradient-cue {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(6, 78, 59, 0.95));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-emphasis-color: transparent;
    font-weight: 700;
}

/* Global Form Elements */
.form-control {
    background: var(--white);
    border: 1.5px solid var(--border-color);
    color: var(--text-main) !important;
    padding: 12px 15px !important;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    border-color: var(--cue-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    outline: none;
}

/* Global Button */
.btn-main {
    background: var(--cue-green);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-main:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    color: #fff;
}

/* Auth Specific (Inko bhi global rakhne mein harj nahi) */
.cue-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

  :root {
            --cue-green: #10b981;
            --bg-light: #f8fafc;
            --text-main: #1e293b;
            --border-color: #e2e8f0;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            margin: 0;
            padding: 0;
        }

        .auth {
            min-height: 100vh;
        }

        /* Fixed Left Side */
        .auth-left-signup {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(6, 78, 59, 0.85)),
                url('https://i.pinimg.com/474x/98/d4/b7/98d4b7894554e1d867ed2a789a90d798.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            position: sticky;
            top: 0;
            height: 100vh;
        }

        .cue-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            color: #fff;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Right Side Content */
        .auth-right {
            background: #ffffff;
            border-left: 1px solid var(--border-color);
            overflow-y: auto;
            padding: 40px 0;
        }

        .auth-card {
            background: #ffffff;
            width: 100%;
            max-width: 500px;
            margin: auto;
        }

        .form-control {
            background: #ffffff;
            border: 1.5px solid var(--border-color);
            color: var(--text-main) !important;
            padding: 10px 15px 10px 45px !important;
            border-radius: 10px;
            transition: all 0.2s ease-in-out;
            font-size: 14px;
        }

        .form-control:focus {
            border-color: var(--cue-green);
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
        }

        .input-icon {
            left: 15px;
            color: #94a3b8;
            font-size: 18px;
        }

        .mb-24:focus-within .input-icon {
            color: var(--cue-green);
        }


        .section-title {
            font-size: 12px;
            font-weight: 700;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 8px;
            margin-bottom: 20px;
            margin-top: 10px;
        }

        /* Custom Scrollbar */
        .auth-right::-webkit-scrollbar {
            width: 6px;
        }

        .auth-right::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 10px;
        }


        :root {
            --cue-green: #10b981;
            /* A more professional Emerald Green for light mode */
            --bg-light: #f8fafc;
            /* Soft slate background */
            --text-main: #1e293b;
            /* Deep navy/slate for text */
            --border-color: #e2e8f0;
        }

    body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    /* CHANGE THIS: Remove 'overflow: hidden' and use 'overflow-x: hidden' */
    overflow-x: hidden; 
    overflow-y: auto; 
    min-height: 100vh;
}

        .auth {
            height: 100vh;
        }

        /* Light Mode Left Side - Clean & Bright */
        .auth-left {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(6, 78, 59, 0.95)),
                url('https://wallpapercave.com/wp/wp11408425.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: #ffffff;
        }

        .cue-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            color: #fff;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Right Side - Form */
        .auth-right {
            background: #ffffff;
            border-left: 1px solid var(--border-color);
        }

        .form-control {
            background: #ffffff;
            border: 1.5px solid var(--border-color);
            color: var(--text-main) !important;
            padding: 12px 15px 12px 45px !important;
            border-radius: 10px;
            transition: all 0.2s ease-in-out;
        }

        .form-control:focus {
            background: #ffffff;
            border-color: var(--cue-green);
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
        }

        .input-icon {
            left: 15px;
            color: #94a3b8;
            /* Muted slate for icons */
            font-size: 20px;
        }

        /* Highlight icon color on focus */
        .mb-4:focus-within .input-icon {
            color: var(--cue-green);
        }

      

        .auth-card {
            background: #ffffff;
            padding: 20px;
        }

        .form-check-input:checked {
            background-color: var(--cue-green);
            border-color: var(--cue-green);
        }

        .forgot-link {
            color: #64748b;
            font-weight: 500;
            transition: color 0.2s;
        }

        .forgot-link:hover {
            color: var(--cue-green);
        }

        .header-logo-img {
    height: 42px;        /* header ke liye perfect */
    width: auto;         /* aspect ratio safe */
    max-width: 160px;    /* large logo ko limit */
    object-fit: contain; /* distortion se bachaata hai */
}



 /* --- Buttons --- */
        .btn-cue {
            background-color: var(--cue-green);
            color: white;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 10px;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
        }

        .btn-cue:hover {
            background-color: var(--cue-dark);
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
        }

        .btn-outline-cue {
            border: 2px solid var(--cue-green);
            color: var(--cue-green);
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 10px;
            transition: all 0.2s;
        }

        .btn-outline-cue:hover {
            background: var(--cue-green);
            color: white;
        }


/* Sidebar Main Container */
.sidebar {
    background: #ffffff;
    border-right: 1px solid var(--border-color);
    width: 250px;
    height: 100vh;
    position: fixed;
    transition: all 0.3s ease;
}

/* Sidebar Scroll Area */
.sidebar-menu-wrapper {
    height: calc(100vh - 100px); /* Logo height minus total height */
    overflow-y: auto;
    padding: 10px 10px;
}

/* Menu Item Styling */
.sidebar-menu__item {
    list-style: none;
    margin-bottom: 5px;
}

.sidebar-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sidebar-menu__link .icon {
    font-size: 22px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

/* Hover & Active States */
.sidebar-menu__link:hover {
    background-color: var(--bg-light);
    color: var(--cue-green);
}

.sidebar-menu__link.active {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--cue-green);
    font-weight: 600;
}

/* Menu Labels (Grouping) */
.menu-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 25px 0 10px 16px;
}


/* Dashboard Specific Utility Classes - Add to goftech-theme.css */

.dashboard-body {
    padding: 24px;
    background-color: var(--bg-light);
}
/* Ensure the dashboard wrapper allows scrolling */
.dashboard-main-wrapper {
    position: relative;
    margin-left: 250px; /* Width of your sidebar */
    width: calc(100% - 250px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: visible; /* Allow content to expand vertically */
}

/* Responsive adjustment for mobile */
@media (max-width: 1199px) {
    .dashboard-main-wrapper {
        margin-left: 0;
        width: 100%;
    }
}
.card {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
}

.icon-box {
    height: 48px;
    width: 48px;
    background: rgba(16, 185, 129, 0.1); /* Light cue-green background */
    color: var(--cue-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.badge {
    padding: 6px 12px;
    font-weight: 600;
    font-size: 12px;
}

.bg-success-subtle {
    background-color: rgba(16, 185, 129, 0.1) !important;
}

.ls-1 {
    letter-spacing: 1px;
}

.fw-800 {
    font-weight: 800;
}

/* Table Hover Effect */
.table-hover tbody tr:hover {
    background-color: rgba(16, 185, 129, 0.02);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "•";
    color: var(--text-light);
}


.swal2-styled.swal2-confirm {
    background-color: var(--cue-green) !important;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2) !important;
}

.swal2-popup {
    font-family: 'Inter', sans-serif !important;
    padding: 2rem !important;
}


/* Professional Table Card Styles */
    .snooker-table-unit {
        position: relative;
        width: 100%;
        height: 460px; /* Fixed height as requested */
        border-radius: 28px;
        overflow: hidden;
        background-image: url('https://cdn.pixabay.com/photo/2020/02/23/11/15/pool-4873047_1280.png');
        background-size: cover;
        background-position: center;
        border: 1px solid rgba(255,255,255,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .snooker-table-unit:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    /* Dark Overlay for Text Readability */
    .table-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(6, 78, 59, 0.95) 100%);
        padding: 30px;
        display: flex;
        flex-direction: column;
    }

    /* Modern Radio Group (Segmented Controls) */
    .game-selector-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        background: rgba(255,255,255,0.1);
        padding: 10px;
        border-radius: 16px;
        backdrop-filter: blur(4px);
    }

    .game-selector-group label {
        cursor: pointer;
        padding: 6px 14px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 12px;
        transition: all 0.2s;
        border: 1px solid transparent;
        margin: 0 !important;
    }

    .game-selector-group input[type="radio"] {
        display: none;
    }

    .game-selector-group input[type="radio"]:checked + label {
        background: #fff;
        color: #064e3b;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* Create Table Placeholder */
    .add-table-card {
        border: 3px dashed #e2e8f0;
        background: #fff;
        cursor: pointer;
        height: 460px;
        border-radius: 28px;
        transition: all 0.3s;
    }

    .add-table-card:hover {
        border-color: var(--cue-green);
        background-color: #f0fdf4;
    }

    /* Table Card Design */
.snooker-card-wrapper {
    position: relative;
    width: 100%;
    height: 460px; /* Fixed Height */
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.snooker-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Deep Gradient Overlay to make white text pop */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(6, 78, 59, 0.95) 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
}

/* Modern Segmented Controls */
.segmented-group {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 14px;
    backdrop-filter: blur(5px);
}

.segmented-group label {
    margin: 0 !important;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    color: #fff;
}

.segmented-group input[type="radio"]:checked + label {
    background: #fff;
    color: #064e3b;
}

/* Receipt Contrast Fix */
.receipt-header h4 { color: #10b981 !important; }
.receipt-label { color: #64748b !important; font-weight: 800; font-size: 11px; text-transform: uppercase; }
.receipt-value { color: #0f172a !important; font-weight: 700; }



/* Premium Card Design */
        .snooker-card-wrapper {
            position: relative;
            width: 100%;
            height: 480px;
            border-radius: 28px;
            overflow: hidden;
            background-image: url('https://cdn.pixabay.com/photo/2020/02/23/11/15/pool-4873047_1280.png');
            background-size: cover;
            background-position: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .snooker-card-wrapper:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(6, 78, 59, 0.98) 100%);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Segmented Control (Modern Radio Buttons) */
        .segmented-group {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 4px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 15px;
        }

        .segmented-group label {
            flex: 1;
            text-align: center;
            padding: 8px 12px;
            margin: 0 !important;
            cursor: pointer;
            border-radius: 10px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            transition: 0.3s;
        }

        .segmented-group input[type="radio"] {
            display: none;
        }

        .segmented-group input[type="radio"]:checked+label {
            background: #fff;
            color: var(--cue-dark);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        /* Live Timer Style */
        .timer-display {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -1px;
            line-height: 1;
        }

        .info-pill {
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 12px;
            border-radius: 10px;
            font-size: 11px;
            color: #fff;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Status Glow */
        .status-dot {
            width: 15px;
            height: 15px;
            background: #ff0000;
            border-radius: 50%;
            display: inline-block;
        }

        .status-active .status-dot {
            background: #10b981;
            box-shadow: 0 0 12px #10b981;
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
            }
        }

        .toast-notification {
            position: fixed;
            top: 25px;
            right: 25px;
            background: #333;
            color: white;
            padding: 15px 25px;
            border-radius: 12px;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .toast-notification.success {
            background: #10b981;
        }

        .toast-notification.warning {
            background: #f59e0b;
        }

        .toast-notification.danger {
            background: #ef4444;
        }

        /* Add Table Placeholder */
        .add-table-card {
            border: 2px dashed #cbd5e1;
            background: #fff;
            height: 480px;
            border-radius: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
        }

        .add-table-card:hover {
            border-color: var(--cue-green);
            background: #f0fdf4;
        }

        

        /* High Contrast Typography */
.text-dark-bold { color: #0f172a !important; font-weight: 800 !important; }
.text-secondary-muted { color: #64748b !important; font-weight: 600; font-size: 11px; text-transform: uppercase; }

/* Table Card Wrapper */
.snooker-card-unit {
    position: relative;
    width: 100%;
    height: 460px; /* Fixed Height */
    border-radius: 28px;
    overflow: hidden;
    background-image: url('https://cdn.pixabay.com/photo/2020/02/23/11/15/pool-4873047_1280.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.card-overlay-fixed {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(6, 78, 59, 0.95) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

/* Pulsing Red Dot Indicator */
.live-indicator {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.4);
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0px rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0px rgba(239, 68, 68, 0); }
}

/* Receipt Paper Style */
.receipt-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    color: #000 !important;
}



        /* Premium Card Design */
        .snooker-card-wrapper {
            position: relative;
            width: 100%;
            height: 480px;
            border-radius: 28px;
            overflow: hidden;
            background-image: url('https://cdn.pixabay.com/photo/2020/02/23/11/15/pool-4873047_1280.png');
            background-size: cover;
            background-position: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .snooker-card-wrapper:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(6, 78, 59, 0.98) 100%);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Segmented Control (Modern Radio Buttons) */
        .segmented-group {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 4px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 15px;
        }

        .segmented-group label {
            flex: 1;
            text-align: center;
            padding: 8px 12px;
            margin: 0 !important;
            cursor: pointer;
            border-radius: 10px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            transition: 0.3s;
        }

        .segmented-group input[type="radio"] { display: none; }

        .segmented-group input[type="radio"]:checked + label {
            background: #fff;
            color: var(--cue-dark);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        /* Live Timer Style */
        .timer-display {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -1px;
            line-height: 1;
        }

        .info-pill {
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 12px;
            border-radius: 10px;
            font-size: 11px;
            color: #fff;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

       

        .toast-notification {
            position: fixed; top: 25px; right: 25px;
            background: #333; color: white; padding: 15px 25px;
            border-radius: 12px; z-index: 9999; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .toast-notification.success { background: #10b981; }
        .toast-notification.warning { background: #f59e0b; }
        .toast-notification.danger { background: #ef4444; }

        /* Add Table Placeholder */
        .add-table-card {
            border: 2px dashed #cbd5e1;
            background: #fff;
            height: 480px;
            border-radius: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
        }
        .add-table-card:hover { border-color: var(--cue-green); background: #f0fdf4; }



        /* Modal Refinements */
.modal-content {
    border-radius: 28px !important;
    border: none !important;
    /* width: 500px; */
}

.modal-header {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 24px !important;
}

.modal-body {
    padding: 24px !important;
}

/* Custom Table Styling inside Modals */
.modal-table {
    margin-bottom: 0;
}

.modal-table thead th {
    background-color: #f8fafc;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: none !important;
    padding: 12px 15px;
}

.modal-table tbody td {
    padding: 15px;
    vertical-align: middle;
    color: #1e293b;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
}

/* Action Circle Buttons */
.btn-action-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    transition: all 0.2s;
}

.search-input-group {
    position: relative;
    margin-bottom: 20px;
}

.search-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-input-group .form-control {
    padding-left: 45px !important;
    background: #f8fafc !important;
}




        /* Premium Card Design */
        .snooker-card-wrapper {
            position: relative;
            width: 100%;
            height: 480px;
            border-radius: 28px;
            overflow: hidden;
            background-image: url('https://cdn.pixabay.com/photo/2020/02/23/11/15/pool-4873047_1280.png');
            background-size: cover;
            background-position: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .snooker-card-wrapper:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(6, 78, 59, 0.98) 100%);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Segmented Control (Modern Radio Buttons) */
        .segmented-group {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 4px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 15px;
        }

        .segmented-group label {
            flex: 1;
            text-align: center;
            padding: 8px 12px;
            margin: 0 !important;
            cursor: pointer;
            border-radius: 10px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            transition: 0.3s;
        }

        .segmented-group input[type="radio"] {
            display: none;
        }

        .segmented-group input[type="radio"]:checked+label {
            background: #fff;
            color: var(--cue-dark);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        /* Live Timer Style */
        .timer-display {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -1px;
            line-height: 1;
        }

        .info-pill {
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 12px;
            border-radius: 10px;
            font-size: 11px;
            color: #fff;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

       


        /* Add Table Placeholder */
        .add-table-card {
            border: 2px dashed #cbd5e1;
            background: #fff;
            height: 480px;
            border-radius: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
        }



.full-view-container {
    background-color: #0b0f1a;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; /* Grid size */
    min-height: 100vh;
}

/* Navbar Main Wrapper */
.custom-navbar {
    background: rgba(15, 23, 42, 0.8) !important; /* Deep Slate with Transparency */
    backdrop-filter: blur(12px); /* Glass effect */
        border-bottom: 3px solid #10b981; /* Thin emerald line at bottom */
    height: 100px;
    position: sticky;
    margin-bottom: 30px;
    top: 0;
    z-index: 1000;
}

/* Logo Fix */
.nav-logo {
    height: 55px; /* 150px boht bada tha, isse header balance hoga */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Register Table Button (Subtle Emerald) */
.btn-register-nav {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
}

.btn-register-nav:hover {
    background: #10b981;
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Dashboard Button (Solid Emerald) */
.btn-dashboard-nav {
    background: #10b981;
    color: #fff;
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-dashboard-nav:hover {
    background: #059669;
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

@keyframes blinker { 50% { opacity: 0; } }

.search-form-wrapper:focus-within {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
}
/* Pagination Styling Override - Premium Button Look */
.custom-pagination .pagination {
    margin-bottom: 0;
    gap: 8px; /* Buttons ke darmiyan thoda zyada space */
}

.custom-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px; /* Square base for single digits */
    height: 30px;
    border: 1px solid #e2e8f0 !important;
    background-color: #ffffff !important;
    color: #475569 !important; /* Darker slate for better visibility */
    font-weight: 700 !important; /* Bold text */
    font-size: 14px;
    padding: 0 12px; /* Horizontal padding for 'Next/Previous' */
    border-radius: 12px !important; /* Proper rounded corners */
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important; /* Subtle shadow */
}

/* Hover State */
.custom-pagination .page-link:hover {
    background-color: #f0fdf4 !important; /* Very light green hint */
    color: #10b981 !important; /* Emerald Text */
    border-color: #10b981 !important;
    transform: translateY(-2px); /* Lift effect */
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.1) !important;
}

/* Active Page State */
.custom-pagination .page-item.active .page-link {
    background-color: #10b981 !important; /* Full Emerald */
    border-color: #10b981 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
    transform: scale(1.05); /* Slightly larger */
}

/* Disabled State */
.custom-pagination .page-item.disabled .page-link {
    background-color: #f8fafc !important;
    color: #cbd5e1 !important;
    border-color: #f1f5f9 !important;
    transform: none;
}

/* Responsive Segmented Group */
.segmented-group {
    display: flex;
    flex-wrap: wrap; /* Buttons ko niche wali line mein bhejne ke liye */
    gap: 8px; /* Buttons ke darmiyan space */
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.segmented-group input[type="radio"] {
    display: none; /* Original radio button hide kar diya */
}

.segmented-group label {
    flex: 1 1 calc(25% - 8px); /* Desktop par 4 ya 5 adjust honge */
    min-width: 80px; /* Choti screen par size control karne ke liye */
    margin-bottom: 0;
    padding: 5px 5px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Hover Effect */
.segmented-group label:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Selected/Checked State (Aapki image jaisa look) */
.segmented-group input[type="radio"]:checked + label {
    background: #ffffff;
    color: #1e293b; /* Dark text for contrast */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Mobile Responsiveness (Extra control) */
@media (max-width: 576px) {
    .segmented-group label {
        flex: 1 1 calc(33.33% - 8px); /* Mobile par aik line mein 3 buttons */
        font-size: 11px;
        padding: 8px 4px;
    }
}

.btn-square-nav {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 42px; /* Fixed width */
        height: 42px; /* Fixed height */
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px; /* Thora sa round corners for modern look */
        transition: all 0.3s ease;
    }

    .btn-square-nav:hover {
        background-color: var(--cue-green, #28a745);
        color: white;
        border-color: transparent;
    }

    .custom-date-input {
        padding-left: 5px;
        padding-right: 5px;
        cursor: pointer;
    }

    /* Webkit browsers (Chrome, Edge) mein calendar icon ko chota ya set karna */
    .custom-date-input::-webkit-calendar-picker-indicator {
        margin-left: -5px;
        cursor: pointer;
        opacity: 0.6;
    }

    /* Form wrap na ho aur elements aik hi line mein rahein */
    #filterForm {
        flex-wrap: nowrap !important;
    }

    @media (max-width: 1200px) {
        #filterForm {
            flex-wrap: wrap !important;
        }
    }