/* Quick Text Input Styles */
.quick-input-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#quickTextInput {
    flex: 1 1 40px;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    font-size: 0.9rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    resize: vertical;
    min-height: 50px;
    max-height: 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Custom Scrollbar Styling */
#quickTextInput::-webkit-scrollbar {
    width: 8px;
}

#quickTextInput::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

#quickTextInput::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
    transition: background 0.2s ease;
}

#quickTextInput::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

#quickTextInput::-webkit-scrollbar-corner {
    background: var(--bg-secondary);
}

/* Firefox Scrollbar Styling */
#quickTextInput {
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) var(--bg-secondary);
}

#quickTextInput:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

#quickTextInput:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#quickTextInput::placeholder {
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

#quickTextInput:focus::placeholder {
    opacity: 0.5;
}

[data-theme="light"] #quickTextInput {
    background: var(--bg-primary);
    border-color: var(--border-color);
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] #quickTextInput:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

[data-theme="light"] #quickTextInput:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Light Theme Scrollbar Styling */
[data-theme="light"] #quickTextInput::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

[data-theme="light"] #quickTextInput::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

[data-theme="light"] #quickTextInput::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

[data-theme="light"] #quickTextInput::-webkit-scrollbar-corner {
    background: var(--bg-secondary);
}

[data-theme="light"] #quickTextInput {
    scrollbar-color: var(--border-color) var(--bg-secondary);
}

#quickSave,
#voiceBtn {
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#quickSave:hover,
#voiceBtn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

#quickSave:active,
#voiceBtn:active {
    transform: translateY(0);
}
