.interactive-demo {
    background-color: #f8f9fa;
}

.demo-wrapper {
    border: 1px solid rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.demo-wrapper:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Trading Pairs List */
.pairs-list {
    max-height: 400px;
    overflow-y: auto;
}

.trading-pair {
    background-color: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.trading-pair:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trading-pair.trend-up {
    border-left: 3px solid var(--bs-success);
}

.trading-pair.trend-down {
    border-left: 3px solid var(--bs-danger);
}

.trading-pair .symbol {
    font-size: 1.1rem;
}

.trading-pair .price {
    font-size: 0.9rem;
    color: var(--bs-gray-700);
}

.trading-pair .volume {
    font-size: 0.8rem;
}

/* Chart Container */
.chart-container {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
}

.chart-controls .btn {
    min-width: 50px;
}

/* Trading Interface */
.trading-interface {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
}

.nav-tabs .nav-link {
    color: var(--bs-gray-600);
    border: none;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
    background: none;
}

.trading-form input[type="number"] {
    font-size: 0.9rem;
    padding: 0.5rem;
}

/* Feature Highlights */
.feature {
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .pairs-list {
        max-height: 200px;
        margin-bottom: 2rem;
    }
    
    .chart-container {
        margin-bottom: 2rem;
    }
}

/* Custom Scrollbar */
.pairs-list::-webkit-scrollbar {
    width: 6px;
}

.pairs-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.pairs-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.pairs-list::-webkit-scrollbar-thumb:hover {
    background: #555;
} 