/* Main Container */
        .main-container {
            min-height: calc(100vh - 80px);
            padding: 40px 0;
        }
        
        /* Search Section */
        .search-section {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .search-icon {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .search-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .search-subtitle {
            color: var(--secondary-color);
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .search-form-order {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .search-input-group {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .search-input-order {
            flex: 1;
            height: 50px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 10px 20px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .search-input-order:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }
        
        .search-btn-order {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .search-btn-order:hover {
            background-color: #4f46e5;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .search-hint {
            color: var(--secondary-color);
            font-size: 14px;
        }
        
        /* Login Required Section */
        .login-required {
            text-align: center;
            padding: 40px 20px;
        }
        
        .login-required .btn {
            padding: 15px 30px;
            font-size: 16px;
            border-radius: 25px;
            font-weight: 600;
        }
        
        /* Error Message */
        .error-message {
            background-color: rgba(239, 68, 68, 0.1);
            color: var(--danger-color);
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        
        /* Order Details */
        .order-section {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .order-header {
            background-color: var(--primary-color);
            color: white;
            padding: 25px 30px;
        }
        
        .order-header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .order-number {
            font-size: 24px;
            font-weight: 700;
        }
        
        .order-date {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .order-status-row {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .order-body {
            padding: 30px;
        }
        
        /* Customer Info */
        .customer-info {
            background-color: var(--light);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .customer-info h5 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .customer-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .info-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .info-label {
            font-size: 12px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .info-value {
            font-size: 15px;
            color: var(--dark);
            font-weight: 500;
        }
        
        /* Order Items */
        .order-items {
            margin-bottom: 30px;
        }
        
        .order-items h5 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .item-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .item-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow);
        }
        
        .item-content {
            display: flex;
            gap: 20px;
        }
        
        .item-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            background-color: var(--light);
        }
        
        .item-details {
            flex: 1;
        }
        
        .item-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
            text-decoration: none;
            display: block;
        }
        
        .item-name:hover {
            color: var(--primary-color);
        }
        
        .item-info {
            display: flex;
            gap: 20px;
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--secondary-color);
        }
        
        .item-code {
            background-color: var(--light);
            border: 2px dashed var(--primary-color);
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
        }
        
        .code-label {
            font-size: 12px;
            color: var(--secondary-color);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .code-value {
            font-family: 'Courier New', Courier, monospace;
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-color);
            word-break: break-all;
        }
        
        .code-copy-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 5px 15px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .code-copy-btn:hover {
            background-color: #4f46e5;
        }
        
        /* Order Summary */
        .order-summary {
            background-color: var(--light);
            border-radius: 8px;
            padding: 20px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 15px;
        }
        
        .summary-row.total {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            padding-top: 10px;
            border-top: 2px solid var(--border-color);
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
        }
        
        .empty-icon {
            font-size: 64px;
            color: var(--border-color);
            margin-bottom: 20px;
        }
        
        .empty-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .empty-text {
            color: var(--secondary-color);
            font-size: 14px;
        }
        
        /* Quick Actions */
        .quick-actions {
            margin: 30px 0;
        }
        
        .action-card {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 25px;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.3s ease;
        }
        
        .action-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .action-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }
        
        .action-content h5 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .action-content p {
            color: var(--secondary-color);
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        /* Support Section */
        .support-section {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 30px;
            text-align: center;
        }
        
        .support-icon {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .support-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .support-text {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .telegram-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            border-radius: 25px;
            background-color: #0088cc;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        
        .telegram-btn:hover {
            background-color: #0077b5;
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .telegram-btn i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        /* Badge Styles */
        .badge {
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        /* Notification Styles */
        .alert-modal {
            position: fixed;
            top: 20px;
            right: 20px;
            max-width: 400px;
            z-index: 2000;
            animation: slideInRight 0.3s ease;
        }
        
        .alert {
            border: none;
            border-radius: 8px;
            padding: 16px 20px;
            font-size: 14px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
        }
        
        .alert-success {
            background-color: #d1fae5;
            border-left: 4px solid var(--success-color);
            color: #065f46;
        }
        
        .alert-danger {
            background-color: #fee2e2;
            border-left: 4px solid var(--danger-color);
            color: #991b1b;
        }
        
        .alert-dismissible .btn-close {
            padding: 0;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            opacity: 0.6;
            margin-left: auto;
        }
        
        .alert-dismissible .btn-close:hover {
            opacity: 1;
        }
        
        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .logo h1 {
                font-size: 20px;
            }
            
            .logo i {
                font-size: 28px;
            }
            
            .search-section {
                padding: 30px 20px;
            }
            
            .search-title {
                font-size: 24px;
            }
            
            .search-input-group {
                flex-direction: column;
            }
            
            .search-btn-order {
                width: 100%;
                justify-content: center;
            }
            
            .order-header {
                padding: 20px;
            }
            
            .order-header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .order-body {
                padding: 20px;
            }
            
            .item-content {
                flex-direction: column;
            }
            
            .item-image {
                width: 100%;
                height: 200px;
            }
            
            .action-card {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .action-icon {
                margin: 0 auto 15px;
            }
        }