/* Demo Enhancements CSS - Additional styling for interactive demonstrations */

/* Enhanced demo containers */
.demo-enhanced {
    border: 2px solid #3498db;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    margin: 15px 0;
}

/* Interactive simulation styling */
.simulation-container {
    background: #2c3e50;
    color: #ecf0f1;
    border-radius: 6px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    margin: 10px 0;
}

.simulation-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin: 8px 0;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

/* Progress indicators */
.demo-progress {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #ecf0f1;
    border-radius: 4px;
    margin: 0 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s ease;
}

/* Enhanced buttons for demos */
.demo-button-enhanced {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.demo-button-enhanced:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.4);
}

/* Status indicators */
.status-indicator {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-success { background: #2ecc71; color: white; }
.status-warning { background: #f39c12; color: white; }
.status-error { background: #e74c3c; color: white; }
.status-info { background: #3498db; color: white; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-enhanced {
        padding: 15px;
        margin: 10px 0;
    }

    .demo-button-enhanced {
        padding: 10px 20px;
        font-size: 14px;
    }
}