.status-badge {
            font-size: 0.75rem;
            padding: 0.25rem 0.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
        }

.menu-item-card {
            padding: 1rem 1.5rem;
            margin-bottom: 0.75rem;
            border-radius: 0.75rem;
            border: 1px solid #e5e7eb;
            transition: all 0.2s ease;
            cursor: pointer;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }
.menu-item-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }
.menu-item-card:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
        }
.menu-item-card.long-press {
            background-color: #fef2f2 !important;
            border-color: #ef4444 !important;
            transform: scale(0.98);
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
        }
.menu-item-card * {
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }
.menu-item-card .flex.items-center.justify-between {
            gap: 1rem;
        }
.menu-item-card .flex.items-center.flex-1 {
            gap: 1rem;
        }
.menu-item-card .flex.gap-1 {
            gap: 0.5rem;
        }
.menu-item-card {
                padding: 0.75rem 1rem;
                margin-bottom: 0.5rem;
            }
.menu-item-card {
                -webkit-tap-highlight-color: transparent;
                touch-action: manipulation;
            }
.menu-item-card.long-press {
                background-color: #fef2f2 !important;
                border-color: #ef4444 !important;
                transform: scale(0.98) !important;
                box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3) !important;
            }

.toggle-switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }
.toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

.toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }
.toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
.toggle-slider {
            background-color: var(--primary-color);
        }
.toggle-slider:before {
            transform: translateX(20px);
        }

.phone-clickable {
            cursor: pointer;
            transition: all 0.2s ease;
        }
.phone-clickable:hover {
            color: #2563eb !important;
            transform: scale(1.05);
        }
.phone-clickable i {
            transition: all 0.2s ease;
        }
.phone-clickable:hover i {
            transform: rotate(15deg);
        }

.custom-scrollbar {
            scrollbar-width: thin;
            scrollbar-color: #d1d5db #f1f1f1;
        }
.custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }
.custom-scrollbar::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
.custom-scrollbar::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 3px;
        }

.pagination-container {
            margin-bottom: 0;
            padding-bottom: 16px;
        }
.pagination-container {
            margin-top: auto !important;
            background: white;
            border-top: 1px solid #f3f4f6;
            padding-top: 16px;
            padding-bottom: 0;
            margin-bottom: 0;
        }

