/* Enhanced Track Escrow Styles */

/* Enhanced Status Badge Styles */
.status-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.status-badge i {
    font-size: 0.75rem;
}

/* Stage Ticker Styles */
.stage-ticker {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticker-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
}

.ticker-progress {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.ticker-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.ticker-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Enhanced Progress Step Styles */
.progress-step {
    position: relative;
}

.progress-step-icon {
    position: relative;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.current-indicator {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.current-indicator i {
    font-size: 0.625rem;
}

/* Enhanced Progress Connector */
.progress-connector.completed {
    background: linear-gradient(90deg, #10b981, #059669);
}

/* Payment Status Indicator */
.payment-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #065f46;
}

.payment-status-indicator i {
    color: #10b981;
}

/* Enhanced Payment Detail Labels */
.payment-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.payment-label i {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Help Status Indicator */
.help-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e40af;
}

.help-status i {
    color: #3b82f6;
}

/* Enhanced Button Styles */
.btn-outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
    transform: translateY(-1px);
}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Enhanced Responsive Styles for Track Escrow */
@media (max-width: 768px) {
    .stage-ticker {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ticker-container {
        width: 100%;
        justify-content: space-between;
    }
    
    .status-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .payment-status-indicator,
    .help-status {
        width: 100%;
        justify-content: center;
    }
    
    .current-indicator {
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
    }
    
    .step-number {
        width: 16px;
        height: 16px;
        font-size: 0.625rem;
    }
}



