
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }

        .order-progress {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .order-progress-line {
            flex-grow: 1;
            height: 6px;
            background-color: #e9ecef;
            position: relative;
            border-radius: 3px;
        }

        .order-progress-line::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background-color: #28a745;
            transition: width 0.3s ease;
            border-radius: 3px;
        }

        .order-progress-step {
            width: 40px;
            height: 40px;
            background-color: #e9ecef;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            margin-right: 20px;
            z-index: 1;
            border: 2px solid #dee2e6;
        }

        .order-progress-step.active {
            background-color: #007bff;
            color: #fff;
            border-color: #007bff;
        }

        .order-progress-step.completed {
            background-color: #28a745;
            color: #fff;
            border-color: #28a745;
        }

        .order-info {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .order-info-item {
            display: flex;
            align-items: center;
            margin-right: 30px;
            margin-bottom: 10px;
        }

        .order-info-item i {
            margin-right: 10px;
            font-size: 1.2rem;
            color: #6c757d;
        }

        .order-progress-label {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.9rem;
            color: #6c757d;
            background-color: #f8f9fa;
            padding: 5px 10px;
            border-radius: 20px;
        }

        .card {
            border: none;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .btn-primary {
            background-color: #007bff;
            border-color: #007bff;
        }

        .btn-primary:hover {
            background-color: #0069d9;
            border-color: #0062cc;
        }
        @media (max-width: 767px) {
            .order-progress-step {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
                margin-right: 10px;
            }

            .order-progress-label {
                display: none;
            }

            .order-info-item {
                margin-right: 15px;
            }

            .order-info-item i {
                font-size: 1rem;
            }

            .list-group-item {
                flex-wrap: wrap;
            }

            .list-group-item .mr-3 {
                margin-right: 1rem !important;
            }

            .list-group-item .ml-auto {
                margin-left: auto !important;
                margin-top: 0.5rem;
            }
        }
        .order-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .order-info-item {
            margin: 0 1rem;
        }

        @media (max-width: 767px) {
            .order-progress-step {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
                margin-right: 10px;
            }

            .order-progress-label {
                display: none;
            }

            .order-info-item {
                margin: 0.5rem 0.5rem;
            }

            .order-info-item i {
                font-size: 1rem;
            }

            .list-group-item {
                flex-wrap: wrap;
            }

            .list-group-item .mr-3 {
                margin-right: 1rem !important;
            }

            .list-group-item .ml-auto {
                margin-left: auto !important;
                margin-top: 0.5rem;
            }
        }