        /* --- MENU STYLES --- */
        .dropdown-menu {
            display: none;
            position: fixed;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            width: 200px;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 6px;
        }

        .dropdown-menu.show {
            display: block;
            animation: fadeIn 0.1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- TABLE UTILS --- */
        .action-cell {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: flex-end;
        }

        .menu-btn {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            border: 1px solid transparent;
            background: transparent;
            color: #94a3b8;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
            font-size: 18px;
        }

        .menu-btn:hover {
            background: #f1f5f9;
            color: #6c5ce7;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            color: #334155;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: 0.1s;
            cursor: pointer;
            border-radius: 8px;
        }

        .dropdown-item:hover {
            background: #f8fafc;
            color: #6c5ce7;
        }

        .dropdown-item.delete {
            color: #ef4444;
            margin-top: 4px;
            border-top: 1px solid #f1f5f9;
        }

        .dropdown-item.delete:hover {
            background: #fef2f2;
        }

        /* --- REPLACED INLINE STYLES --- */
        
        /* Table Columns */
        .col-name { width: 30%; }
        .col-loc { width: 20%; }
        .col-overs { width: 10%; }
        .col-teams { width: 10%; }
        .col-status { width: 15%; }
        .col-actions { width: 15%; text-align: right; }

        /* Empty State */
/* --- EMPTY STATE (Fixed Layout) --- */
.empty-state-box {
    display: none; /* JS controls visibility */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 20px;
    background-color: #f8fafc; /* Light background */
    border: 2px dashed #e2e8f0; /* Dashed border */
    border-radius: 16px;
    margin-top: 20px;
    box-sizing: border-box;
}

.empty-icon-circle {
    width: 80px;
    height: 80px;
    background: #eef2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.empty-icon-circle i {
    font-size: 36px;
    color: #94a3b8;
}

.empty-text {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    margin: 0 0 6px 0;
}

.empty-subtext {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

        /* Modals Generic */
        .centered-modal {
            text-align: center !important;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .modal-w-450 { max-width: 450px; }
        .modal-w-400 { max-width: 400px; }
        .modal-padded { padding: 35px 30px; }

        .modal-header-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            align-items: center;
        }
        .modal-title-h4 { margin: 0; }
        .btn-close-simple {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
        }

        /* Form Utilities */
        .mb-15 { margin-bottom: 15px; }
        .mb-20 { margin-bottom: 20px; }
        .w-100 { width: 100%; }

        /* Delete Modal Icons & Text */
        .icon-circle-red {
            width: 70px;
            height: 70px;
            background: #fee2e2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .icon-trash { font-size: 32px; color: #ef4444; }
        
        .modal-title-danger {
            margin: 0 0 10px;
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
        }
        .modal-desc-text {
            color: #64748b;
            margin: 0 0 25px;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .actions-row {
            display: flex;
            gap: 12px;
            width: 100%;
        }
        .btn-flex {
            flex: 1;
            justify-content: center;
        }
        .btn-red-solid {
            background: #ef4444;
            border: none;
            color: white;
        }
        .btn-red-solid:hover {
            background: #dc2626;
        }
