        /* --- 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-box {
            padding: 60px;
            text-align: center;
            color: #94a3b8;
            display: none;
        }
        .empty-state-icon {
            font-size: 32px;
            display: block;
            margin-bottom: 10px;
            opacity: 0.5;
        }

        /* 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;
        }

        /* --- COMPACT EDIT MODAL --- */
        .modal-compact {
            max-width: 320px !important;
            padding: 20px 22px !important;
        }
        
        .modal-compact .modal-header-row {
            margin-bottom: 15px;
        }
        
        .modal-compact .modal-title-h4 {
            font-size: 16px;
        }
        
        .modal-compact .form-label {
            font-size: 11px;
            margin-bottom: 4px;
        }
        
        .modal-compact .form-control-sm {
            padding: 8px 10px;
            font-size: 13px;
            min-height: 36px;
        }
        
        .mb-12 { margin-bottom: 12px; }
        .mb-15 { margin-bottom: 15px; }
        
        .modal-compact .btn-sm {
            padding: 10px;
            font-size: 13px;
        }
