.input-mode-buttons {
    display: flex;
    gap: 10px;
}

.input-mode-btn {
    flex: 1;
    padding: 10px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.input-mode-btn:hover {
    border-color: #667eea;
}

.input-mode-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.category-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 8px;
}
