
.input-options-combined-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-options-combined-panel .input-options-dev-panel {
    padding-top: 4px;
    border-top: 1px solid rgba(220, 234, 250, 0.14);
}

.input-options-voice-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    max-height: 100%;
    overflow: auto;
    padding-right: 2px;
}

.voice-menu-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.voice-menu-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.voice-slate-toggle-row {
    flex: 0 0 auto;
}

.input-options-dev-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: auto;
    max-height: none;
    overflow: visible;
}

.input-options-dev-section {
    border: 1px solid var(--input-dock-menu-section-border-color);
    border-radius: 10px;
    padding: 12px;
    background: var(--input-dock-menu-section-background);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    height: auto;
    overflow: visible;
}

.input-options-dev-section--speed {
    flex: 0 0 auto;
    min-height: 0;
    justify-content: flex-start;
}

.input-options-dev-section--chunking {
    flex: 0 0 auto;
    height: auto;
}

.input-options-dev-title {
    color: rgba(238, 248, 255, 0.92);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.input-options-dev-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    min-width: 0;
}

.input-options-dev-row:last-child {
    margin-bottom: 0;
}

.input-options-dev-row > span {
    color: rgba(223, 234, 248, 0.92);
    font-size: 12px;
    min-width: 42px;
    font-weight: 600;
    flex: 0 0 auto;
}

.input-options-dev-note {
    margin: 0;
    color: rgba(199, 218, 240, 0.78);
    font-size: 11px;
    line-height: 1.45;
}

.input-options-dev-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.speed-preset-group {
    width: 100%;
}

.speed-preset-group .input-options-dev-btn {
    min-width: 72px;
}

.input-options-dev-btn {
    border: 1px solid rgba(186, 220, 250, 0.38);
    border-radius: 7px;
    background: rgba(7, 20, 45, 0.62);
    color: rgba(237, 246, 255, 0.9);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.input-options-dev-btn:hover {
    border-color: rgba(56, 233, 176, 0.8);
}

.input-options-dev-btn.selected,
.input-options-dev-btn.active {
    border-color: rgba(251, 191, 36, 0.98);
    background: rgba(251, 191, 36, 0.96);
    color: #111827;
}

.input-options-dev-checkbox {
    width: 14px;
    height: 14px;
}

.input-options-dev-checkbox-label {
    color: rgba(223, 234, 248, 0.92);
    font-size: 12px;
    font-weight: 600;
}

.input-options-dev-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#voiceSlateRow {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 2px 0 0;
}

.voice-slate-select,
.voice-slate-input {
    width: auto;
    flex: 1 1 140px;
    min-width: 0;
    border: 1px solid rgba(188, 219, 247, 0.38);
    border-radius: 8px;
    background: rgba(7, 20, 45, 0.62);
    color: rgba(240, 248, 255, 0.95);
    font-size: 12px;
    padding: 8px 10px;
}

#devSpeedSlider {
    flex: 1;
    min-width: 0;
}

#devSpeedInput {
    width: 54px;
    border: 1px solid rgba(188, 219, 247, 0.38);
    border-radius: 8px;
    background: rgba(7, 20, 45, 0.62);
    color: rgba(240, 248, 255, 0.95);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 8px;
    text-align: center;
}

#chunkSize {
    width: 88px;
    border: 1px solid rgba(188, 219, 247, 0.38);
    border-radius: 8px;
    background: rgba(7, 20, 45, 0.62);
    color: rgba(240, 248, 255, 0.95);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 8px;
    text-align: center;
}

@media (max-width: 1060px) {
    .voice-menu-secondary {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .input-options-pill-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .input-option-pill {
        min-width: 0;
        width: 100%;
        flex: none;
        min-height: 44px;
        padding: 8px 6px;
        font-size: clamp(15px, 3.8vw, 17px);
        line-height: 1.15;
        white-space: normal;
    }

    .input-option-card-head {
        padding: 12px 12px 8px;
    }

    .input-option-card-body {
        padding: 0 12px 12px;
    }

    .speed-preset-group .input-options-dev-btn {
        flex: 1 1 72px;
    }
}
