/* Streaming.css - Mit Hell/Dunkel-Modus */
/* Grundlegende Variablen werden aus rctools.css übernommen */

.stream-zeile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stream-zeile label {
    flex: 1;
    color: var(--text-color);
    margin-right: 10px;
}

.stream-zeile input[type="number"] {
    width: 60px;
    text-align: right;
    background-color: var(--input-bg);
    color: var(--text-color);
    border: 1px solid var(--input-border);
    padding: 4px 6px;
    border-radius: 5px;
}

.success {
    color: var(--accent-color);
    font-weight: bold;
}