/* Gemini 지능형 도구 칩 및 메뉴 스타일 */

.tool-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(75, 144, 255, 0.12);
    border: 1px solid rgba(75, 144, 255, 0.28);
    padding: 3px 6px 3px 8px;
    border-radius: 20px;
    color: #4b90ff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.tool-chip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

#clear-tool,
#gem-preview-clear-tool {
    background: transparent;
    border: none;
    color: #4b90ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 1px;
    border-radius: 50%;
    opacity: 0.7;
}

#clear-tool svg,
#gem-preview-clear-tool svg {
    width: 12px;
    height: 12px;
}

#clear-tool:hover,
#gem-preview-clear-tool:hover {
    background: rgba(75, 144, 255, 0.2);
    opacity: 1;
}

.tool-chip.locked #clear-tool,
.tool-chip.locked #gem-preview-clear-tool {
    display: none;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 비디오 생성 설정 패널 */
.video-config-panel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(75, 144, 255, 0.05);
    border: 1px solid rgba(75, 144, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    animation: slideUp 0.2s ease-out;
}

.vconfig-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vconfig-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.vconfig-options {
    display: flex;
    gap: 4px;
}

.vconfig-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
}

.vconfig-btn:hover {
    border-color: rgba(75, 144, 255, 0.4);
    color: #e0e0e0;
}

.vconfig-btn.active {
    background: rgba(75, 144, 255, 0.2);
    border-color: rgba(75, 144, 255, 0.5);
    color: #4b90ff;
    font-weight: 500;
}

.vconfig-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}
