.container {
            max-width: 1024px;
            margin-left: auto;
            margin-right: auto;
            padding: 1rem;
        }
        h1 {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .table-container {
            border: 1px solid #0f2a49;
            overflow-x: auto;
            border-radius: 0.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            padding: 0.75rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid #0f2a49; /* Border sesuai background gelap */
            white-space: nowrap;
        }
        thead {
            background-color: #21283a;
        }
        th {
            font-size: 0.75rem;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        tbody tr:hover {
            background-color: #0c121c;
        }
        tr {
            color: #fff;
        }
        td {
            font-size: 0.875rem;
        }
        
        /* Status Badge Styling */
        .status-badge {
            display: inline-flex;
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 600;
            line-height: 1.5;
            border-radius: 9999px;
            min-width: 80px; 
            justify-content: center;
        }
        .status-SUKSES {
            background-color: #d1fae5;
            color: #065f46;
        }
        .status-PENDING {
            background-color: #fef3c7;
            color: #92400e;
        }
        .status-PROSES {
            background-color: #d1e5fa;
            color: #1c57b9;
        }
        .status-CANCEL { 
            background-color: #fbd9d9; 
            color: #b91c1c;
        }
        .status-GAGAL {
            background-color: #fee2e2;
            color: #991b1b;
        }

        .info-order {
            text-align: center;
            font-size: 0.875rem;
            color: #a0a0a0; 
            margin-top: 1rem;
        }
		
        .font-medium {
            font-weight: 500;
        }
        .text-white {
            color: #fff;
        }
        .text-gray-300 {
            color: #d1d5db;
        }
        .footer-text {
            text-align: center;
            font-size: 0.875rem;
            line-height: 1.25rem;
            color: #6b7280;
            margin-top: 1rem;
        }
        .maintenance-notice {
            background-color: rgba(30, 58, 138, 0.3);
            border: 1px solid #2563eb;
            border-radius: 0.5rem;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.875rem;
            line-height: 1.25rem;
			justify-content: center;
        }
        .maintenance-notice-text {
            font-weight: 500;
			margin-top: 15px;
            color: #93c5fd;
        }
        .svg-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #60a5fa;
            flex-shrink: 0;
        }