.demo-container {
    font-family: Arial, sans-serif;
    max-width: 500px;
    margin: 0 auto;
}

.demo-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.demo-list li {
    padding: 12px 16px;
    margin: 8px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* This is where the magic happens - style all items except .special */
.demo-list li:not(.special) {
    background-color: #e9ecef;
    color: #495057;
    border-left: 4px solid #6c757d;
}

.demo-list li:not(.special):hover {
    background-color: #dee2e6;
    transform: translateX(5px);
}

.demo-list li.special {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
    font-weight: bold;
}

.demo-controls {
    margin: 20px 0;
    text-align: center;
}

.demo-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
    font-size: 14px;
}

.demo-button:hover {
    background-color: #0056b3;
}

.code-display {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    overflow-x: auto;
}