body.no-animation {
            animation: none !important;
        }
        body.no-animation * {
            animation: none !important;
            transition: none !important;
        }
        .grid-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            background: #fff;
            border: none;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            animation: fadeIn 0.8s ease;
        }
        @media (min-width: 768px) {
            .grid-container {
                grid-template-columns: 1fr 1fr;
            }
        }
        .grid-container .col-span-2 {
            grid-column: span 1;
        }
        @media (min-width: 768px) {
            .grid-container .col-span-2 {
                grid-column: span 2;
            }
        }
        .section-title {
            font-weight: 600;
            color: #1976d2;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            font-size: 1.5rem;
            animation: slideDown 0.8s ease;
        }
        .section-title.blink {
            animation: blink 1s infinite;
        }
        .section-title::after {
            content: '';
            width: 50px;
            height: 3px;
            background: #1976d2;
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
            animation: expand 1s ease;
        }
        .search-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            background: #f9f9f9;
            font-size: 0.9rem;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
        }
        .search-input:focus {
            outline: none;
            border-color: #1976d2;
            background: #fff;
            box-shadow: 0 0 8px rgba(25, 118, 210, 0.2);
            transform: scale(1.02);
        }
        .scroll-container {
            height: 350px;
            overflow-y: auto;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            position: relative;
            transition: all 0.3s ease;
        }
        .scroll-container:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
        }
        .scroll-container::-webkit-scrollbar {
            width: 6px;
        }
        .scroll-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        .scroll-container::-webkit-scrollbar-thumb {
            background: #1976d2;
            border-radius: 10px;
        }
        .list-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: slideInLeft 0.5s ease forwards;
            opacity: 0;
        }
        .list-item:nth-child(1) { animation-delay: 0.1s; }
        .list-item:nth-child(2) { animation-delay: 0.2s; }
        .list-item:nth-child(3) { animation-delay: 0.3s; }
        .list-item:nth-child(4) { animation-delay: 0.4s; }
        .list-item:nth-child(5) { animation-delay: 0.5s; }
        .list-item:hover {
            background: #e6f0fa;
            transform: translateY(-2px);
        }
        .list-item.selected {
            background: #fff;
            color: #1976d2;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .list-item img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            margin-right: 12px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .list-item:hover img {
            transform: rotate(360deg);
        }
        .list-item p {
            margin: 0;
            font-size: 0.95rem;
            color: #333;
        }
        .list-item.selected p {
            color: #1976d2;
        }
        .price-badge {
            display: inline-flex;
            align-items: center;
            padding: 5px 10px;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 20px;
            background: #1976d2;
            color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .list-item.selected .price-badge {
            background: #1976d2;
        }
        .price-badge:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .marquee-container {
            background: #fff;
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            animation: fadeIn 1s ease;
        }
        .marquee-item {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            margin-right: 20px;
            padding: 8px 15px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }
        .marquee-item:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .marquee-item i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .marquee-item i.status-ok {
            color: #28a745;
        }
        .marquee-item i.status-wait {
            color: #f39c12;
        }
        .marquee-item i.status-cancel {
            color: #dc3545;
        }
        .marquee-item .item-header {
            display: flex;
            align-items: center;
        }
        .marquee-item span {
            font-size: 0.9rem;
            color: #333;
            font-weight: 500;
        }
        .marquee-item small {
            font-size: 0.8rem;
            color: #666;
            margin-top: 2px;
        }
        .stats-container {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
            text-align: center;
            animation: fadeIn 1.2s ease;
        }
        .stats-container h4 {
            color: #1976d2;
            font-weight: 600;
            margin: 5px 0;
            opacity: 0;
            animation: countUp 2s ease forwards;
        }
        .modal-content {
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }
        .dot {
            height: 10px;
            width: 10px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            margin: 0 2px;
            transition: background 0.3s;
        }
        .dot.active {
            background-color: #1976d2;
            animation: dotPulse 0.5s ease;
        }
        .fade {
            animation: fade 1.5s;
        }
        .main-header {
            background: #1976d2;
            color: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            animation: slideIn 0.8s ease;
            position: relative;
        }
        .main-header h3 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 600;
            animation: zoomIn 1s ease;
        }
        .main-header p {
            margin: 5px 0 0;
            font-size: 0.9rem;
            opacity: 0;
            animation: fadeIn 1s ease 0.5s forwards;
        }
        .btn-info {
            background: #1565c0;
            color: #fff;
            border: none;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .btn-info:hover {
            background: #0d47a1;
            transform: scale(1.05);
        }
        .animation-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            border: none;
            padding: 8px;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .animation-toggle:hover {
            transform: rotate(360deg);
        }
        .animation-toggle i {
            font-size: 1.2rem;
            color: #1976d2;
        }

        /* Mobile Design */
        @media (max-width: 767px) {
            .container {
                padding: 10px;
            }
            .main-header h3 {
                font-size: 1.4rem;
            }
            .main-header p {
                font-size: 0.8rem;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .section-title::after {
                width: 40px;
            }
            .list-item {
                padding: 10px 12px;
            }
            .list-item img {
                width: 28px;
                height: 28px;
            }
            .list-item p {
                font-size: 0.9rem;
            }
            .price-badge {
                font-size: 0.8rem;
                padding: 4px 8px;
            }
            .scroll-container {
                height: 300px;
            }
            .marquee-item {
                padding: 6px 10px;
            }
            .marquee-item i {
                font-size: 1rem;
            }
            .marquee-item span {
                font-size: 0.8rem;
            }
            .marquee-item small {
                font-size: 0.7rem;
            }
            .stats-container h4 {
                font-size: 1.2rem;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes dotPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        @keyframes zoomIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes expand {
            from { width: 0; }
            to { width: 50px; }
        }
        @keyframes countUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
		.stats-container {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    text-align: center;
    animation: fadeIn 1.2s ease;
}

.section-title {
    font-weight: 600;
    color: #1976d2;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-size: 1.5rem;
    animation: slideDown 0.8s ease;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #1976d2;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: expand 1s ease;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #1976d2;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.stats-item i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.stats-item .text-success {
    color: #28a745;
}

.stats-item .text-danger {
    color: #dc3545;
}

.stats-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    opacity: 0;
    animation: countUp 2s ease forwards;
}

/* Mobile Design */
@media (max-width: 767px) {
    .stats-container {
        padding: 15px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-title::after {
        width: 40px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stats-item p {
        font-size: 0.9rem;
    }

    .stats-item h4 {
        font-size: 1.5rem;
    }
}

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

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

@keyframes expand {
    from { width: 0; }
    to { width: 50px; }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}