.interactive-container {
    margin: 10px 0;
}

.control-panel {
    margin-bottom: 15px;
}

.control-panel button {
    margin-right: 10px;
    padding: 8px 16px;
    border: 1px solid #007bff;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

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

.demo-text {
    width: 250px;
    border: 2px solid #17a2b8;
    padding: 12px;
    background-color: white;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.demo-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-clip {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.demo-wrap {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
}