        body {
            font-family: 'Inter', sans-serif;
        }
        .navbar-logo {
            font-weight: bold;
            font-size: 1.5rem;
            color: #4f46e5;
            letter-spacing: 1px;
        }
        .navbar-link {
            transition: color 0.2s;
        }
        .navbar-link:hover {
            color: #4f46e5;
        }

        .active-sidebar { background: #eef2ff; color: #4f46e5; }
        .order-status-Paid { color: #16a34a; font-weight: 600; }
        .order-status-Pending { color: #f59e42; font-weight: 600; }
        .order-status-Cancelled { color: #ef4444; font-weight: 600; }

        .image-preview {
            width: 100%;
            max-width: 420px;
            height: 260px;
            border-radius: 1rem;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            background-color: #f9f9f9;
        }
        .image-preview img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
        }
        .ticket-type-row {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        .remove-ticket-btn {
            background: #f87171;
            color: #fff;
            border: none;
            border-radius: 0.5rem;
            padding: 0.5rem 0.75rem;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s;
        }
        .remove-ticket-btn:hover {
            background: #dc2626;
        }
        .add-ticket-btn {
            background: #6366f1;
            color: #fff;
            border: none;
            border-radius: 0.5rem;
            padding: 0.5rem 1.25rem;
            cursor: pointer;
            font-size: 1rem;
            margin-top: 0.5rem;
            transition: background 0.2s;
        }
        .add-ticket-btn:hover {
            background: #4f46e5;
        }



        .modal-bg {
            background: rgba(0,0,0,0.4);
        }
        .modal {
            display: none;
        }
        .modal.active {
            display: flex;
        }
